From f80cabfa75d488a7ae52b4381c28cf087d7489b5 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 27 Jul 2025 02:18:54 +0800 Subject: [PATCH] :bug: Fix linter issue --- DysonNetwork.Drive/Client/src/components/FilePoolSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DysonNetwork.Drive/Client/src/components/FilePoolSelect.vue b/DysonNetwork.Drive/Client/src/components/FilePoolSelect.vue index 22b6bbc..0a8a83c 100644 --- a/DysonNetwork.Drive/Client/src/components/FilePoolSelect.vue +++ b/DysonNetwork.Drive/Client/src/components/FilePoolSelect.vue @@ -28,7 +28,7 @@ import { formatBytes } from '@/views/format' const props = defineProps<{ modelValue: string | null - placeholder: string | undefined + placeholder?: string | undefined }>() const emit = defineEmits(['update:modelValue', 'update:pool'])