bug-fixes/category-tag-creator (#266)

* fix category labels

* set loader for migration

* v0.4.1

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden
2021-04-07 17:20:19 -08:00
committed by GitHub
parent 1cf95bb3b0
commit f09960f52c
5 changed files with 22 additions and 8 deletions

View File

@@ -60,8 +60,7 @@ export default {
dialog: false,
itemName: "",
rules: {
required: val =>
!!val || this.$t("settings.theme.theme-name-is-required"),
required: val => !!val || "A Name is Required",
},
};
},
@@ -71,7 +70,7 @@ export default {
return this.tagDialog ? "Create a Tag" : "Create a Category";
},
inputLabel() {
return this.tagDialog ? "Tag Name" : "Tag Category";
return this.tagDialog ? "Tag Name" : "Category Name";
},
},
watch: {