Restore cameraURI in calibration modal

This commit is contained in:
Richard Bowman 2024-01-03 14:22:49 +00:00
parent c1ed5d0c87
commit fc49ca7656

View file

@ -48,6 +48,7 @@
<cameraCalibrationSettings
:show-extra-settings="false"
:camera-uri="cameraUri"
></cameraCalibrationSettings>
</div>
</div>
@ -190,6 +191,9 @@ export default {
var CSMUseful = this.canCSMCalibrated && !this.isCSMCalibrated;
var LSTUseful = this.canLSTCalibrated && !this.isLSTCalibrated;
return CSMUseful || LSTUseful;
},
cameraUri: function() {
return `${this.$store.getters.baseUri}/camera/`;
}
},