Skip to content

Commit

Permalink
validate
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoertl committed Jan 8, 2024
1 parent b9bf227 commit 6fb2342
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stores/corpora.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ export const useCorporaStore = defineStore(

const corporaForSearch = computed(
() =>
`corpname=${selectedCorpus.value?.corpname}${selectedSubCorpus.value ? `;usesubcorp=${selectedSubCorpus.value.n}` : ""
`corpname=${selectedCorpus.value?.corpname}${
selectedSubCorpus.value ? `;usesubcorp=${selectedSubCorpus.value.n}` : ""
}`,
);

const corporaForSearchWithoutSubCorpus = computed(
() =>
`corpname=${selectedCorpus.value?.corpname}`,
() => `corpname=${selectedCorpus.value?.corpname}`,
);

const corporaForSearchKeys = computed(() => {
Expand Down

0 comments on commit 6fb2342

Please sign in to comment.