Skip to content

Commit

Permalink
Minor fixes to GridList
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Nov 20, 2023
1 parent 7cf0f8c commit 1d9b073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/components/Grid/GridList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { faCaretDown, faCaretUp } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { BAlert, BButton, BLink, BPagination } from "bootstrap-vue";
import { computed, onMounted, ref, watch } from "vue";
import { useRouter } from "vue-router/composables";
import { useRouter } from "vue-router";
import { timeout } from "@/utils/timeout";
Expand Down Expand Up @@ -172,13 +172,13 @@ watch(operationMessage, () => {
{{ config.title }}
</h1>
<FilterMenu
v-model:filter-text="filterText"
v-model:show-advanced="showAdvanced"
class="py-2"
:name="config.plural"
:placeholder="`search ${config.plural.toLowerCase()}`"
:filter-class="config.filtering"
:filter-text.sync="filterText"
:loading="loading"
:show-advanced.sync="showAdvanced"
@on-backend-filter="onSearch" />
<hr v-if="showAdvanced" />
</div>
Expand Down

0 comments on commit 1d9b073

Please sign in to comment.