add user edition edit option
All checks were successful
deploy / build-and-deploy (push) Successful in 28s

This commit is contained in:
2025-10-15 14:33:28 +02:00
parent 157b1c2dfc
commit 37ca206bed

View File

@@ -62,8 +62,14 @@
],
[
{ key: 'username', type: 'text', label: 'Spielername', options: { required: true } },
{ key: 'uuid', type: 'text', label: 'UUID' }
]
{
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={editUser}
bind:open={editPopupOpen}