Fix: Allow lowercase letters in monetary currency code field (#6359)

This commit is contained in:
shamoon 2024-04-10 08:27:03 -07:00 committed by GitHub
parent 95c24a50f7
commit 10e10f9ff4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,8 @@ export class MonetaryComponent extends AbstractInputComponent<string> {
get currencyCode(): string {
const focused = document.activeElement === this.currencyField?.nativeElement
if (focused && this.value) return this.value.match(/^([A-Z]{0,3})/)?.[0]
if (focused && this.value)
return this.value.toUpperCase().match(/^([A-Z]{0,3})/)?.[0]
return (
this.value
?.toString()
@ -45,7 +46,7 @@ export class MonetaryComponent extends AbstractInputComponent<string> {
}
set currencyCode(value: string) {
this.value = value + this.monetaryValue?.toString()
this.value = value.toUpperCase() + this.monetaryValue?.toString()
}
get monetaryValue(): string {