We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54233d commit a93b5b5Copy full SHA for a93b5b5
web/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "dataspherestudio",
3
- "version": "0.5.0",
+ "version": "0.8.0",
4
"private": true,
5
"scripts": {
6
"serve": "vue-cli-service serve",
web/src/js/component/editor/editor.vue
@@ -91,7 +91,7 @@ export default {
91
if (newValue == this.getValue()) {
92
return;
93
}
94
- let readOnly = this.editor.getRawOptions().readOnly;
+ let readOnly = this.currentConfig.readOnly;
95
if (readOnly) {
96
// editor.setValue 和 model.setValue 都会丢失撤销栈
97
this.editor.setValue(newValue);
0 commit comments