mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-24 09:16:43 +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-box">
|
||||||
<div class="float-left p-2">
|
<div class="float-left p-2">
|
||||||
<EditBox bind:value={newIdentifier} />
|
<EditBox bind:value={newIdentifier} uppercase />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -174,7 +174,7 @@
|
|||||||
function changeIdentity (element: HTMLElement) {
|
function changeIdentity (element: HTMLElement) {
|
||||||
showPopup(ChangeIdentity, { identifier, projectsIdentifiers }, element, (result) => {
|
showPopup(ChangeIdentity, { identifier, projectsIdentifiers }, element, (result) => {
|
||||||
if (result != null) {
|
if (result != null) {
|
||||||
identifier = result
|
identifier = result.toLocaleUpperCase()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user