Fix spacebar not working in search bar

This commit is contained in:
simon987 2022-04-16 13:51:36 -04:00
parent a75675ecea
commit 54df1dfcf7

View File

@ -81,7 +81,9 @@ export default {
methods: { methods: {
keyDownListener(e) { keyDownListener(e) {
if (this.$refs.lightbox === undefined) { const isLightboxOpen = this.$refs.lightbox === undefined || this.$refs.lightbox.$el.tagName === undefined;
if (isLightboxOpen) {
return true; return true;
} }