Merge branch 'master' into bugfix/5773_prevent_overlapping

This commit is contained in:
Jonathan Starck 2025-04-18 09:02:25 +02:00 committed by GitHub
commit ed8da8b55a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,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}`;