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 34b357f commit b771c3cCopy full SHA for b771c3c
web/src/pages/map/editor.vue
@@ -150,6 +150,12 @@ export default Vue.extend({
150
edition_stack(): void {
151
ExternalVueAppEvent.$emit('editor-count', this.edition_stack.length)
152
},
153
+
154
+ status(): void {
155
+ if (!this.status) {
156
+ this.$emit('close')
157
+ }
158
+ },
159
160
161
beforeMount(): void {
web/src/pages/map/index.vue
@@ -70,6 +70,7 @@
70
:user="user"
71
:issue="editor"
72
@issue-done="markerLayer.corrected()"
73
+ @close="$refs.editor.hide()"
74
/>
75
</side-pannel>
76
</div>
0 commit comments