mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 06:23:34 -07:00
fix category labels
This commit is contained in:
parent
1cf95bb3b0
commit
0be23a3985
3 changed files with 4 additions and 4 deletions
|
@ -23,6 +23,7 @@
|
||||||
v-model="page.categories"
|
v-model="page.categories"
|
||||||
ref="categoryFormSelector"
|
ref="categoryFormSelector"
|
||||||
@mounted="catMounted = true"
|
@mounted="catMounted = true"
|
||||||
|
tag-selector="false"
|
||||||
/>
|
/>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
</v-toolbar-title>
|
</v-toolbar-title>
|
||||||
|
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<NewCategoryTagDialog />
|
<NewCategoryTagDialog :tag-dialog="false" />
|
||||||
</v-app-bar>
|
</v-app-bar>
|
||||||
<v-list height="300" dense style="overflow:auto">
|
<v-list height="300" dense style="overflow:auto">
|
||||||
<v-list-item-group>
|
<v-list-item-group>
|
||||||
|
|
|
@ -60,8 +60,7 @@ export default {
|
||||||
dialog: false,
|
dialog: false,
|
||||||
itemName: "",
|
itemName: "",
|
||||||
rules: {
|
rules: {
|
||||||
required: val =>
|
required: val => !!val || "A Name is Required",
|
||||||
!!val || this.$t("settings.theme.theme-name-is-required"),
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -71,7 +70,7 @@ export default {
|
||||||
return this.tagDialog ? "Create a Tag" : "Create a Category";
|
return this.tagDialog ? "Create a Tag" : "Create a Category";
|
||||||
},
|
},
|
||||||
inputLabel() {
|
inputLabel() {
|
||||||
return this.tagDialog ? "Tag Name" : "Tag Category";
|
return this.tagDialog ? "Tag Name" : "Category Name";
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue