Skip to content

Commit

Permalink
Update InputTab.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Jul 11, 2023
1 parent 2816875 commit 8e404b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,15 @@ 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)"
/>
<cv-select
v-model="useCameraSettingsStore().currentPipelineSettings.streamingFrameDivisor"
label="Stream Resolution"
tooltip="Resolution to which camera frames are downscaled for streaming to the dashboard"
:items="streamResolutions"
:select-cols="10"
@input="handleStreamResolutionChange"
@input="v => handleStreamResolutionChange(v)"
/>
</div>
</template>
Expand Down

0 comments on commit 8e404b0

Please sign in to comment.