Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Aug 21, 2023
1 parent e8ce8a9 commit 93c3064
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions photon-client/src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const cameraViewType = computed<number[]>({
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);
}
});
</script>
Expand Down

0 comments on commit 93c3064

Please sign in to comment.