From 70f52eb3bba22282c864eafb313fe0a228728692 Mon Sep 17 00:00:00 2001 From: yangsy Date: Mon, 8 Dec 2025 11:10:20 +0800 Subject: [PATCH] fix(use-device-selection): default select to Camera --- src/composables/device/use-device-selection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composables/device/use-device-selection.ts b/src/composables/device/use-device-selection.ts index 24bcf2c..23e90fd 100644 --- a/src/composables/device/use-device-selection.ts +++ b/src/composables/device/use-device-selection.ts @@ -8,7 +8,7 @@ export function useDeviceSelection() { const router = useRouter(); const selectedStationCode = ref(); - const selectedDeviceType = ref(DeviceType.AlarmHost); + const selectedDeviceType = ref(DeviceType.Camera); const selectedDevice = ref(); const initFromRoute = (lineDevices: LineDevices) => {