mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
fix footer display
This commit is contained in:
parent
d53e0f99d6
commit
7ce968eb42
1 changed files with 1 additions and 1 deletions
|
|
@ -399,7 +399,7 @@ function onDisplayedItems(items: { key: string }[]) {
|
|||
// Table setup
|
||||
const itemsPerPage = ref<number>(display.smAndDown.value ? 1 : 10)
|
||||
const itemsPerPageOptions = computed(() => (display.smAndDown.value ? [1, 5] : [10, 25, 50]))
|
||||
const hideFooter = computed(() => importBooks.value.length < itemsPerPage.value)
|
||||
const hideFooter = computed(() => importBooks.value.length < (display.smAndDown.value ? 1 : 10))
|
||||
|
||||
const headers = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue