ui_migration bugfix(component) Added setStreamId prop, img v-show and one pixel fallback to drop jpeg stream connection

This commit is contained in:
Antonio Anaya 2026-06-02 06:38:11 -06:00
parent 702d18552d
commit 60f79a41d8
4 changed files with 61 additions and 14 deletions

View file

@ -5,7 +5,7 @@
<paneControl />
</div>
<div class="view-component uk-width-expand">
<streamDisplay />
<streamDisplay :stream-id="setStreamId" />
</div>
</div>
</template>
@ -21,6 +21,12 @@ export default {
paneControl,
streamDisplay,
},
data() {
return {
setStreamId: "control",
};
},
};
</script>