diff options
| author | Henry Jameson <me@hjkos.com> | 2020-10-21 00:31:16 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-10-21 00:31:16 +0300 |
| commit | f561e755530063b2e8e0db210264b1d244543bd0 (patch) | |
| tree | 986f3ca8b95b0cfa48725e970204d1e402ff12ad /src/components/nav_panel/nav_panel.vue | |
| parent | 1ec41302f729ac9100c3ec0cede5e4f79dd626a3 (diff) | |
lint
Diffstat (limited to 'src/components/nav_panel/nav_panel.vue')
| -rw-r--r-- | src/components/nav_panel/nav_panel.vue | 35 |
1 files changed, 30 insertions, 5 deletions
diff --git a/src/components/nav_panel/nav_panel.vue b/src/components/nav_panel/nav_panel.vue index f3e131ff..4755d7b7 100644 --- a/src/components/nav_panel/nav_panel.vue +++ b/src/components/nav_panel/nav_panel.vue @@ -7,13 +7,23 @@ :to="{ name: timelinesRoute }" :class="onTimelineRoute && 'router-link-active'" > - <FAIcon fixed-width size="lg" class="button-icon" icon="home" /> + <FAIcon + fixed-width + size="lg" + class="button-icon" + icon="home" + /> {{ $t("nav.timelines") }} </router-link> </li> <li v-if="currentUser"> <router-link :to="{ name: 'interactions', params: { username: currentUser.screen_name } }"> - <FAIcon fixed-width size="lg" class="button-icon" icon="bell" /> + <FAIcon + fixed-width + size="lg" + class="button-icon" + icon="bell" + /> {{ $t("nav.interactions") }} </router-link> </li> @@ -25,13 +35,23 @@ > {{ unreadChatCount }} </div> - <FAIcon fixed-width size="lg" class="button-icon" icon="comments" /> + <FAIcon + fixed-width + size="lg" + class="button-icon" + icon="comments" + /> {{ $t("nav.chats") }} </router-link> </li> <li v-if="currentUser && currentUser.locked"> <router-link :to="{ name: 'friend-requests' }"> - <FAIcon fixed-width size="lg" class="button-icon" icon="user-plus" /> + <FAIcon + fixed-width + size="lg" + class="button-icon" + icon="user-plus" + /> {{ $t("nav.friend_requests") }} <span v-if="followRequestCount > 0" @@ -43,7 +63,12 @@ </li> <li> <router-link :to="{ name: 'about' }"> - <FAIcon fixed-width size="lg" class="button-icon" icon="info-circle" />{{ $t("nav.about") }} + <FAIcon + fixed-width + size="lg" + class="button-icon" + icon="info-circle" + />{{ $t("nav.about") }} </router-link> </li> </ul> |
