From 59b586332a3868c90666addcd7a675e32ca6b665 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 1 Feb 2019 14:01:30 +0300 Subject: Fix matchMedia queries --- vnext/src/components/MessageInput.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vnext/src/components/MessageInput.js') diff --git a/vnext/src/components/MessageInput.js b/vnext/src/components/MessageInput.js index 5766f2ac..5b603e9a 100644 --- a/vnext/src/components/MessageInput.js +++ b/vnext/src/components/MessageInput.js @@ -49,8 +49,8 @@ export default class MessageInput extends React.Component { } componentDidMount() { - const isMobile = window.matchMedia('only screen and (width <62.5rem)'); - if (!isMobile.matches) { + const isDesktop = window.matchMedia('(min-width: 62.5rem)'); + if (isDesktop.matches) { this.textarea.current.focus(); } } -- cgit v1.2.3