mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-01 02:41:42 +00:00
mirrored dic keys in ui from backend
This commit is contained in:
@@ -71,10 +71,10 @@
|
||||
socketSendAll: function(){
|
||||
this.$socket.sendObj([
|
||||
{'team_number':this.teamNum},
|
||||
{'connectionType':this.connectionType},
|
||||
{'connection_type':this.connectionType},
|
||||
{'ip':this.ip},
|
||||
{'gateWay':this.gateWay},
|
||||
{'hostName':this.hostName}]);
|
||||
{'gateway':this.gateWay},
|
||||
{'hostname':this.hostName}]);
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
||||
@@ -45,7 +45,7 @@ export const store = new Vuex.Store({
|
||||
state['camera'] = value;
|
||||
state['pipeline'] = "0";
|
||||
},
|
||||
pipeline: set('pipeline'),
|
||||
pipeline: set('curr_pipeline'),
|
||||
brightness: set('brightness'),
|
||||
exposure: set('exposure'),
|
||||
orientation:set('orientation'),
|
||||
@@ -58,11 +58,11 @@ export const store = new Vuex.Store({
|
||||
area: set('area'),
|
||||
ratio: set('ratio'),
|
||||
extent: set('extent'),
|
||||
teamValue: set('teamValue'),
|
||||
connectionType: set('connectionType'),
|
||||
teamValue: set('team_number'),
|
||||
connectionType: set('connection_type'),
|
||||
ip: set('ip'),
|
||||
gateWay : set('gateWay'),
|
||||
hostName : set('hostName'),
|
||||
gateWay : set('gateway'),
|
||||
hostName : set('hostname'),
|
||||
streamAdress : set('streamAdress'),
|
||||
isBinaryImage: set('isBinaryImage'),
|
||||
cameraList : set('cameraList'),
|
||||
|
||||
Reference in New Issue
Block a user