Skip to content

Commit

Permalink
More fixes for iterative search
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Dec 27, 2024
1 parent 6bc74b1 commit 3e1d5a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

<v-tooltip open-delay="300" top>
<template v-slot:activator="{ on }">
<v-checkbox>
<v-checkbox v-model="iterativeSearch">
<template slot="label">
<label v-on="on">
Iterative search
Expand Down Expand Up @@ -285,7 +285,7 @@ export default {
request.taxfilter = this.taxFilter.value;
}
if (this.iterativeSearch) {
request.iterativesearch = this.iterativeSearch.value;
request.iterativesearch = this.iterativeSearch;
}
try {
this.inSearch = true;
Expand Down

0 comments on commit 3e1d5a7

Please sign in to comment.