From 93c3064530c2680d708b9ad0ba2aba36e00ca583 Mon Sep 17 00:00:00 2001 From: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com> Date: Mon, 21 Aug 2023 01:15:19 -0400 Subject: [PATCH] Formatting fixes --- photon-client/src/views/DashboardView.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/photon-client/src/views/DashboardView.vue b/photon-client/src/views/DashboardView.vue index 89c6fe3930..dea3a4aa97 100644 --- a/photon-client/src/views/DashboardView.vue +++ b/photon-client/src/views/DashboardView.vue @@ -28,10 +28,10 @@ const cameraViewType = computed({ return ret; }, set: v => { - // useCameraSettingsStore().currentPipelineSettings.inputShouldShow = v.includes(0); - // useCameraSettingsStore().currentPipelineSettings.outputShouldShow = v.includes(1); - console.log(v) - useCameraSettingsStore().changeCurrentPipelineSetting({ inputShouldShow: v.includes(0), outputShouldShow: v.includes(1) }, true); + useCameraSettingsStore().changeCurrentPipelineSetting({ + inputShouldShow: v.includes(0), + outputShouldShow: v.includes(1) + }, true); } });