summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/model/graph.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/model/graph.js b/src/client/model/graph.js
index 411c1ba2..fe4dd02c 100644
--- a/src/client/model/graph.js
+++ b/src/client/model/graph.js
@@ -471,6 +471,10 @@ function Graph() {
if ((n === undefined)) {
return false;
}
+ // cannot assert state is temp since robot code still uses it
+ if (state != 'temp') {
+ console.log('warning: I hope robot is doing this not-through-backend property change');
+ }
n[prop] = value;
return true;
}