mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-24 17:30:03 +00:00
Fix project identifier uppercase (#3362)
This commit is contained in:
parent
51fada2663
commit
2c905f2571
@ -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>
|
||||
|
@ -174,7 +174,7 @@
|
||||
function changeIdentity (element: HTMLElement) {
|
||||
showPopup(ChangeIdentity, { identifier, projectsIdentifiers }, element, (result) => {
|
||||
if (result != null) {
|
||||
identifier = result
|
||||
identifier = result.toLocaleUpperCase()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user