diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue b/photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue index f24c04a3d8..1cbe1ab682 100644 --- a/photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue +++ b/photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue @@ -116,7 +116,7 @@ const handleStreamResolutionChange = (value: number) => { tooltip="Resolution and FPS the camera should directly capture at" :items="cameraResolutions" :select-cols="10" - @input="handleResolutionChange" + @input="v => handleResolutionChange(v)" /> { tooltip="Resolution to which camera frames are downscaled for streaming to the dashboard" :items="streamResolutions" :select-cols="10" - @input="handleStreamResolutionChange" + @input="v => handleStreamResolutionChange(v)" />