diff --git a/src/components/Road.vue b/src/components/Road.vue index a3e8c06f..5f7bac16 100644 --- a/src/components/Road.vue +++ b/src/components/Road.vue @@ -1,6 +1,6 @@ @@ -195,6 +219,14 @@ export default { this.$store.commit('setRoadName', { id: this.tabRoad, name: this.newRoadName }); this.editDialog = false; this.newRoadName = ''; + }, + all: function () { + console.log('all'); + this.$root.$refs.Road.all(); + }, + none: function () { + console.log('none'); + this.$root.$refs.Road.none(); } } }; diff --git a/src/pages/MainPage.vue b/src/pages/MainPage.vue index ee0665a2..7159fd2c 100644 --- a/src/pages/MainPage.vue +++ b/src/pages/MainPage.vue @@ -527,4 +527,8 @@ export default { .expanded-search { max-width: 22em; } + + /deep/ div.v-toolbar__extension { + padding: 0 12px 0 24px !important; + }