Skip to content

Commit

Permalink
Merge pull request #61 from Ku3mi41/feature/stem-field
Browse files Browse the repository at this point in the history
feat: collection field stem parameter checkbox
  • Loading branch information
bfritscher authored Apr 24, 2024
2 parents b244ace + 7b60a05 commit 9300b4e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/collection/CollectionUi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<q-checkbox v-model="field.index" label="index" />
<q-checkbox v-model="field.sort" label="sort" />
<q-checkbox v-model="field.infix" label="infix" />
<q-checkbox v-model="field.stem" label="stem" />
</div>

<q-btn
Expand Down Expand Up @@ -171,6 +172,7 @@ export default defineComponent({
index: true,
sort: false,
infix: false,
stem: false,
locale: '',
num_dim: undefined,
} as CollectionFieldSchema,
Expand Down Expand Up @@ -265,6 +267,7 @@ export default defineComponent({
index: true,
sort: false,
infix: false,
stem: false,
locale: '',
num_dim: undefined,
});
Expand Down

0 comments on commit 9300b4e

Please sign in to comment.