1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

feat: display top 10 in fuzzysearch (#3023)

This commit is contained in:
Amir Raminfar
2024-06-10 15:16:34 -07:00
committed by GitHub
parent 6aabe0673c
commit 9447b1e3c9

View File

@@ -61,7 +61,7 @@ import { ContainerState } from "@/types/Container";
import { useFuse } from "@vueuse/integrations/useFuse";
import { type FuseResult } from "fuse.js";
const { maxResults = 5 } = defineProps<{
const { maxResults = 10 } = defineProps<{
maxResults?: number;
}>();