Feat: Implement tags manager in settings

Fix: Remove unused color options

Chore: Fix typo
This commit is contained in:
Nelson Chan
2022-05-26 16:52:18 +08:00
parent d9f12a6376
commit e9564619f1
10 changed files with 602 additions and 21 deletions

View File

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