Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion [core]/esx_identity/client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end)

RegisterNUICallback("ready", function(_, cb)
ready = true
cb(1)
cb({ config = Config })
end)

function setGuiState(state)
Expand Down
1 change: 1 addition & 0 deletions [core]/esx_identity/server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ ESX.RegisterServerCallback("esx_identity:registerIdentity", function(source, cb,
TriggerClientEvent("esx:showNotification", source, TranslateCap("invalid_height_format"), "error")
return cb(false)
end
-- TODO: Implement Nationalities

if xPlayer then
local identifier = xPlayer.getIdentifier()
Expand Down
3 changes: 3 additions & 0 deletions [core]/esx_identity/web/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[*]
indent_style = tab
indent_size = 4
3 changes: 3 additions & 0 deletions [core]/esx_identity/web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
package-lock.json
bun.lock
Empty file.
8 changes: 8 additions & 0 deletions [core]/esx_identity/web/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Install Dependencies
`npm install`

## Development Build in Watch Mode
`npm run watch`

## Development
`npm run dev`
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 0 additions & 33 deletions [core]/esx_identity/web/dist/assets/index-BR-kw549.js

This file was deleted.

1 change: 0 additions & 1 deletion [core]/esx_identity/web/dist/assets/index-CBKwBtku.css

This file was deleted.

7 changes: 7 additions & 0 deletions [core]/esx_identity/web/dist/assets/index-CfnYlQ9n.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions [core]/esx_identity/web/dist/assets/index-YFMQQ-HB.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 12 additions & 21 deletions [core]/esx_identity/web/dist/index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script type="module" crossorigin src="./assets/index-BR-kw549.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-CBKwBtku.css">
</head>

<body class="none">
<div id="app"></div>
</body>

</html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>esx_identity</title>
<script type="module" crossorigin src="./assets/index-CfnYlQ9n.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-YFMQQ-HB.css">
</head>
<body>
<div id="app"></div>
</body>
</html>
Expand Down
Loading
Loading