Skip to content

Commit f34e677

Browse files
committed
Don't emit update event to close the application launcher if it is not open
1 parent eaa4aba commit f34e677

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/ApplicationLauncher.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export default {
4242
},
4343
4444
hide() {
45-
this.$emit('update:open', false);
45+
if (this.open) {
46+
this.$emit('update:open', false);
47+
}
4648
},
4749
},
4850
};

0 commit comments

Comments
 (0)