diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /components/editor/category | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'components/editor/category')
| -rw-r--r-- | components/editor/category/EditorCategoryChildrenOptionsPanel.vue | 3 | ||||
| -rw-r--r-- | components/editor/category/EditorCategoryOptionsPanel.vue | 7 |
2 files changed, 6 insertions, 4 deletions
diff --git a/components/editor/category/EditorCategoryChildrenOptionsPanel.vue b/components/editor/category/EditorCategoryChildrenOptionsPanel.vue index 57dcef2..f4a73ff 100644 --- a/components/editor/category/EditorCategoryChildrenOptionsPanel.vue +++ b/components/editor/category/EditorCategoryChildrenOptionsPanel.vue @@ -18,8 +18,7 @@ const category = computed(() => { <div id="options"> <h2>Quests in this category</h2> <p>Drag to reorder.</p> - <div class="option-group"> - </div> + <div class="option-group"></div> </div> </EditorOptionsPanel> </template> diff --git a/components/editor/category/EditorCategoryOptionsPanel.vue b/components/editor/category/EditorCategoryOptionsPanel.vue index 112b063..c543f73 100644 --- a/components/editor/category/EditorCategoryOptionsPanel.vue +++ b/components/editor/category/EditorCategoryOptionsPanel.vue @@ -17,9 +17,12 @@ const category = computed(() => { <EditorOptionsPanel v-if="category"> <div id="options"> <div class="option-group"> - <Checkbox id="category-permissionrequired" label="Require permission for category" + <Checkbox + id="category-permissionrequired" + label="Require permission for category" description="Players must have permission to open and start quests in this category." - v-model="category.permissionRequired" /> + v-model="category.permissionRequired" + /> </div> </div> </EditorOptionsPanel> |
