diff --git a/src/components/board/TagsTabSidebard.vue b/src/components/board/TagsTabSidebard.vue
index 6b79db502..3fabf2879 100644
--- a/src/components/board/TagsTabSidebard.vue
+++ b/src/components/board/TagsTabSidebard.vue
@@ -3,12 +3,11 @@
-
-
@@ -24,19 +23,20 @@
-
-
+ {{ t('deck', 'Add a new label') }}
+
@@ -96,9 +96,9 @@ export default {
methods: {
updateColor(c) {
if (this.editingLabel === null) {
- this.addLabelObj.color = c.hex.substring(1, 7)
+ this.addLabelObj.color = c.substring(1, 7)
} else {
- this.editingLabel.color = c.hex.substring(1, 7)
+ this.editingLabel.color = c.substring(1, 7)
}
},
clickEdit(label) {