This commit is contained in:
Henry Jameson 2022-08-23 22:18:33 +03:00
parent d3454ca7de
commit dc5992f990
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@
<li v-if="currentUser || !privateMode">
<button
class="button-unstyled menu-item"
@click="toggleTimelines"
:aria-expanded="showTimelines ? 'true' : 'false'"
@click="toggleTimelines"
>
<FAIcon
fixed-width
@ -56,8 +56,8 @@
<li v-if="currentUser">
<button
class="button-unstyled menu-item"
@click="toggleLists"
:aria-expanded="showLists ? 'true' : 'false'"
@click="toggleLists"
>
<FAIcon
fixed-width

View File

@ -89,7 +89,7 @@ const SideDrawer = {
}
name = this.currentUser ? 'friends' : 'public-timeline'
if (USERNAME_ROUTES.has(name)) {
return { name, params: { username: this.currentUser.screen_name }}
return { name, params: { username: this.currentUser.screen_name } }
} else {
return { name }
}