Get all cards for a deck
Build and Push Docker Image / build (push) Successful in 2m30s

This commit is contained in:
2026-06-29 00:45:24 -07:00
parent 0595285c25
commit 03555d4744
2 changed files with 4 additions and 2 deletions
@@ -90,6 +90,7 @@
import { isEmpty, isNil } from "lodash"
import { computed, ref, watch } from "vue"
import { MAX_PER_PAGE } from "@/api/base-api"
import useFlashcardDeck from "@/use/use-flashcard-deck"
import useFlashcards, { type Flashcard, FlashcardQueryOptions } from "@/use/use-flashcards"
@@ -113,6 +114,7 @@ const flashcardsQueryOptions = computed<FlashcardQueryOptions>(() => {
where: {
flashcardDeckId: flashcardDeck.value?.id,
},
perPage: MAX_PER_PAGE,
}
})