Fix project identifier uppercase (#3362)

This commit is contained in:
Denis Bykhov 2023-06-06 21:36:52 +06:00 committed by GitHub
parent 51fada2663
commit 2c905f2571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
>
<div class="float-left-box">
<div class="float-left p-2">
<EditBox bind:value={newIdentifier} />
<EditBox bind:value={newIdentifier} uppercase />
</div>
</div>
</Card>

View File

@ -174,7 +174,7 @@
function changeIdentity (element: HTMLElement) {
showPopup(ChangeIdentity, { identifier, projectsIdentifiers }, element, (result) => {
if (result != null) {
identifier = result
identifier = result.toLocaleUpperCase()
}
})
}