Skip to content

Commit cf2c4fc

Browse files
committedDec 7, 2019
Don't raise "unrecognized GUI edit" warning on _derived property
1 parent 45ddd80 commit cf2c4fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/plot_api/plot_api.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,9 @@ function applyUIRevisions(data, layout, oldFullData, oldFullLayout) {
25552555
}
25562556
}
25572557
} else {
2558-
Lib.warn('unrecognized GUI edit: ' + key);
2558+
if(key.search('._derived') < 0) {
2559+
Lib.warn('unrecognized GUI edit: ' + key);
2560+
}
25592561
}
25602562
// if we got this far, the new value was accepted as the new starting
25612563
// point (either because it changed or revision changed)

0 commit comments

Comments
 (0)
Please sign in to comment.