diff options
| author | Henry Jameson <me@hjkos.com> | 2022-11-21 22:17:33 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-11-21 22:17:33 +0200 |
| commit | 3c0e7882b10989424c3ec98413b555373efa1719 (patch) | |
| tree | 984024834844471ac8742b87b7369a3942afcdac /src/components/mobile_nav | |
| parent | cf294f2d1825cc34e5e632c1a00095a81cad06f9 (diff) | |
lint
Diffstat (limited to 'src/components/mobile_nav')
| -rw-r--r-- | src/components/mobile_nav/mobile_nav.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 6e732d1f..d642008b 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -11,7 +11,7 @@ <button class="button-unstyled mobile-nav-button" :title="$t('nav.mobile_sidebar')" - :aria-expanaded="this.$refs.sideDrawer && !this.$refs.sideDrawer.closed" + :aria-expanaded="$refs.sideDrawer && !$refs.sideDrawer.closed" @click.stop.prevent="toggleMobileSidebar()" > <FAIcon @@ -51,7 +51,7 @@ > <div class="mobile-notifications-header"> <span class="title">{{ $t('notifications.notifications') }}</span> - <span class="spacer"/> + <span class="spacer" /> <button v-if="notificationsAtTop" class="button-unstyled mobile-nav-button" @@ -79,8 +79,8 @@ </div> <div id="mobile-notifications" - class="mobile-notifications" ref="mobileNotifications" + class="mobile-notifications" @scroll="onScroll" /> </aside> |
