diff --git a/ayanova/src/components/wiki-control.vue b/ayanova/src/components/wiki-control.vue
index 9362e939..bd24b2c5 100644
--- a/ayanova/src/components/wiki-control.vue
+++ b/ayanova/src/components/wiki-control.vue
@@ -8,15 +8,15 @@
{{ visibleIcon() }}
-
- fa-edit
-
+
+
+
+ fa-edit
+
+
+ DESIGN MODE
+
@@ -27,7 +27,7 @@ export default {
data() {
return {
wikiVisible: false,
- designerVisible: false
+ editMode: false
};
},
props: {
@@ -35,7 +35,6 @@ export default {
canEdit: Boolean
},
methods: {
- toggleEditMode() {},
visibleIcon() {
return this.wikiVisible ? "fa-eye-slash" : "fa-eye";
},