aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/App.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bwirtz@genymobile.com>2020-10-23 18:29:06 -0700
committerGitHub <noreply@github.com>2020-10-23 18:29:06 -0700
commit5b727eee020b9d734f60fd37f840ea47f83fb23e (patch)
treed4137914a4bf76bd60ff4af940dc0fd33fee04f1 /src/App.vue
parent9a14de007e7c8d04ce708f8df1300ac8070d85df (diff)
parent37dfd2a132d883482b330b22a7c19d86948a391c (diff)
downloadhomer-5b727eee020b9d734f60fd37f840ea47f83fb23e.tar.gz
homer-5b727eee020b9d734f60fd37f840ea47f83fb23e.tar.zst
homer-5b727eee020b9d734f60fd37f840ea47f83fb23e.zip
Merge branch 'main' into dynamic-services
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/App.vue b/src/App.vue
index c47b5a9..d97df0c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -26,7 +26,7 @@
26 <Navbar 26 <Navbar
27 :open="showMenu" 27 :open="showMenu"
28 :links="config.links" 28 :links="config.links"
29 @navbar:toggle="showMenu = !showMenu" 29 @navbar-toggle="showMenu = !showMenu"
30 > 30 >
31 <DarkMode @updated="isDark = $event" /> 31 <DarkMode @updated="isDark = $event" />
32 32
@@ -40,9 +40,9 @@
40 <SearchInput 40 <SearchInput
41 class="navbar-item is-inline-block-mobile" 41 class="navbar-item is-inline-block-mobile"
42 @input="filterServices" 42 @input="filterServices"
43 @search:focus="showMenu = true" 43 @search-focus="showMenu = true"
44 @search:open="navigateToFirstService" 44 @search-open="navigateToFirstService"
45 @search:cancel="filterServices" 45 @search-cancel="filterServices"
46 /> 46 />
47 </Navbar> 47 </Navbar>
48 </div> 48 </div>
@@ -51,7 +51,7 @@
51 <div v-cloak class="container"> 51 <div v-cloak class="container">
52 <ConnectivityChecker 52 <ConnectivityChecker
53 v-if="config.connectivityCheck" 53 v-if="config.connectivityCheck"
54 @network:status-update="offline = $event" 54 @network-status-update="offline = $event"
55 /> 55 />
56 <div v-if="!offline"> 56 <div v-if="!offline">
57 <!-- Optional messages --> 57 <!-- Optional messages -->