Fix PSC causing lag via selective update broadcasting (#28)

* Fix PSC causing lag via selective update broadcasting

* add logging, update key

* Fix current pipeline setting selective send

Co-authored-by: Matt <matthew.morley.ca@gmail.com>
This commit is contained in:
Banks T
2020-07-17 01:37:18 -04:00
committed by GitHub
parent 53783d88d7
commit bac09bf430
3 changed files with 19 additions and 5 deletions

View File

@@ -188,7 +188,7 @@
} else if (this.$store.state.hasOwnProperty(key)) {
this.$store.commit(key, value);
} else if (this.$store.getters.currentPipelineSettings.hasOwnProperty(key)) {
this.$store.commit('mutatePipeline', {'key': key, 'value': value});
this.$store.commit('mutatePipeline', {[key]: value});
} else {
switch (key) {
default: {