Merged PR 1895: feat(app): provide default currency code as EUR

feat(app): provide default currency code as EUR

Refs: #5247 #5248
This commit is contained in:
Lorenz Hilpert
2025-07-28 12:00:38 +00:00
committed by Nino Righi
parent 6d26f7f6c0
commit 32bd3e26d2
2 changed files with 6 additions and 1 deletions

View File

@@ -16,5 +16,5 @@ import { ProductFormatIconGroup } from '@isa/icons';
export class ProductFormatIconComponent {
format = input.required<string>();
formatLowerCase = computed(() => this.format().toLowerCase());
formatLowerCase = computed(() => this.format()?.toLowerCase());
}