diff --git a/src/components/Tag.vue b/src/components/Tag.vue index 8b64c0613..ceccce8a6 100644 --- a/src/components/Tag.vue +++ b/src/components/Tag.vue @@ -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}`;