Merge branch 'master' into feature/country-flag-emoji

This commit is contained in:
Alan Escarcha 2025-04-18 07:25:57 -03:00 committed by GitHub
commit 664b2f66ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ export default {
},
computed: {
displayText() {
if (this.item.value === "" || this.item.value === undefined) {
if (this.item.value === "" || this.item.value === undefined || this.item.value === null) {
return this.item.name;
} else {
return `${this.item.name}: ${this.item.value}`;