mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-29 02:21:41 +00:00
More UI fixes, add videomode and StreamDivisor to config
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
return this.value;
|
||||
},
|
||||
set(value) {
|
||||
this.$emit('input', parseInt(value));
|
||||
this.$emit('input', parseFloat(value));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</v-col>
|
||||
<v-col class="colsClass" v-show="selectedTab === 1 || selectedTab === 2">
|
||||
<div class="videoClass">
|
||||
<img :src="steamAddress">
|
||||
<img :src="streamAddress" alt="Camera Stream">
|
||||
</div>
|
||||
</v-col>
|
||||
</v-row>
|
||||
@@ -52,7 +52,7 @@
|
||||
return "";
|
||||
}
|
||||
},
|
||||
steamAddress: {
|
||||
streamAddress: {
|
||||
get: function () {
|
||||
return "http://" + location.hostname + ":" + this.$store.state.port + "/stream.mjpg";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user