diff --git a/src/components/Autocomplete.vue b/src/components/Autocomplete.vue
index fc0207ad23b0c7ee0ef8be903e5a2b9118fda2b6..f0905f571fbdf88634688c9b5e5af8e6efddd270 100644
--- a/src/components/Autocomplete.vue
+++ b/src/components/Autocomplete.vue
@@ -184,7 +184,10 @@ import Menu from './Menu.vue'
     mounted: function() {
       if (! this.$route.hash) {
         window.scrollTo(0,0)
-        this.$refs.autocomplete.focus()
+        if(this.$vuetify.breakpoint.mdAndUp) {
+          this.$refs.autocomplete.focus()
+        }
+        
       }
     }
   }