disable focus for mobile

This commit is contained in:
supertiger1234 2020-02-15 14:20:27 +00:00
parent 7d4c586fe4
commit f908cb437e

View file

@ -789,8 +789,8 @@ export default {
}, },
selectedChannelID() { selectedChannelID() {
this.$nextTick(() => { this.$nextTick(() => {
this.$refs["input-box"].focus(); if (!isMobile) this.$refs["input-box"].focus();
}) });
} }
}, },
computed: { computed: {