More UI fixes, add videomode and StreamDivisor to config

This commit is contained in:
Banks Troutman
2019-11-29 14:24:34 -05:00
parent 3ff1f56bd5
commit 5b2af86f87
10 changed files with 51 additions and 31 deletions

View File

@@ -25,7 +25,7 @@
return this.value;
},
set(value) {
this.$emit('input', parseInt(value));
this.$emit('input', parseFloat(value));
}
}
}

View File

@@ -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";
}