Update pankow which now has Dropdown replaced with SingleSelect
This commit is contained in:
@@ -5,7 +5,7 @@ const i18n = useI18n();
|
||||
const t = i18n.t;
|
||||
|
||||
import { ref, reactive, onMounted, watch } from 'vue';
|
||||
import { Button, ButtonGroup, Dropdown, Spinner, TextInput, MultiSelect } from 'pankow';
|
||||
import { Button, ButtonGroup, SingleSelect, Spinner, TextInput, MultiSelect } from 'pankow';
|
||||
import { useDebouncedRef, prettyDate, prettyLongDate, prettyEmailAddresses } from 'pankow/utils';
|
||||
import Section from '../components/Section.vue';
|
||||
import MailModel from '../models/MailModel.js';
|
||||
@@ -91,7 +91,7 @@ onMounted(async () => {
|
||||
<!-- TODO replace with fetch more on scroll -->
|
||||
<div class="eventlog-filter">
|
||||
|
||||
<Dropdown v-model="perPage" :options="perPageOptions" option-key="value" option-label="name"/>
|
||||
<SingleSelect v-model="perPage" :options="perPageOptions" option-key="value" option-label="name"/>
|
||||
|
||||
<ButtonGroup>
|
||||
<Button tool secondary @click="onPrevPage()" :disabled="busy || page <= 1" icon="fa-solid fa-angle-double-left" v-tooltip="$t('main.pagination.prev')" />
|
||||
|
||||
Reference in New Issue
Block a user