add user edition to admin panel

This commit is contained in:
2025-10-15 14:12:18 +02:00
parent 4fee3a721a
commit 709116536d
3 changed files with 28 additions and 3 deletions

View File

@@ -46,8 +46,14 @@
],
[
{ key: 'username', type: 'text', label: 'Spielername', options: { required: true } },
{ key: 'uuid', type: 'text', label: 'UUID', default: null }
]
{
key: 'edition',
type: 'select',
label: 'Edition',
options: { values: { java: 'Java', bedrock: 'Bedrock' }, required: true }
}
],
[{ key: 'uuid', type: 'text', label: 'UUID', default: null, options: { dynamicWidth: true } }]
]}
onSubmit={addUser}
bind:open={createPopupOpen}