diff --git a/src/components/DictionaryView.vue b/src/components/DictionaryView.vue
index 7b7de2ebfb9f541c9a1b92a3c2f05a5a4696a70f..db0c0f8e806b50145e2995eca96fdefb1b6b29c0 100644
--- a/src/components/DictionaryView.vue
+++ b/src/components/DictionaryView.vue
@@ -176,7 +176,6 @@ function navigate_to_query(self, word) {
 
             let total = response.data.articles.bm ? response.data.articles.bm.length : 0
             total += response.data.articles.nn ? response.data.articles.nn.length : 0
-            console.log("total", total)
 
             if (total == 0) {
               throw new QueryException(query)
@@ -282,7 +281,6 @@ export default {
         this.error = this.$t('error.network')
       }
       else if (error.response) {
-        console.log(error.response.status)
         this.error = this.$t('error.server', {code: error.response.status})
       } else {
         this.error = this.$t('error.generic')
diff --git a/src/components/SearchToolbar.vue b/src/components/SearchToolbar.vue
index 8ddb9e6724279e48cd2cd600ca64e5b40cceff3c..91fe40bdbe1c91c29460bbf216c9b23d899c0c02 100644
--- a/src/components/SearchToolbar.vue
+++ b/src/components/SearchToolbar.vue
@@ -42,13 +42,11 @@ export default {
         return  ["ALL", "NOUN", "PRON","DET","ADJ","CCONJ","SCONJ", "ADV", "VERB", "INTJ"].map(text =>{
           return {text: this.$t("pos." + text ), value: text}
         })
-
       },
       scope_items: function() {
         return ["w", "x", "wx"].map(text => {
           return {text: this.$t("scope." + text), value: text}
         })
-        
       }
     },
     methods: {