fix(settings): Infinite scroll value not recognized (#1520)

This commit is contained in:
Rémi Marseault 2024-02-17 19:37:01 +01:00 committed by GitHub
parent dfd7bf7148
commit f540ccd1ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,7 +185,13 @@ onBeforeMount(() => {
<v-select v-model="vueTorrentStore.language" flat hide-details :items="LOCALES" :label="t('settings.vuetorrent.general.language')" />
</v-col>
<v-col cols="12" md="6">
<v-combobox v-model="paginationSize" :messages="paginationSizeMessages" flat :items="paginationSizes" :label="t('settings.vuetorrent.general.paginationSize.label')" />
<v-combobox
v-model="paginationSize"
:messages="paginationSizeMessages"
flat
:items="paginationSizes"
:return-object="false"
:label="t('settings.vuetorrent.general.paginationSize.label')" />
</v-col>
</v-row>