diff --git a/src/components/Tag.vue b/src/components/Tag.vue index 6c2ff8c9b..5b8b96fc2 100644 --- a/src/components/Tag.vue +++ b/src/components/Tag.vue @@ -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}`;