merge-requests/1699/head
Henry Jameson 2 years ago
parent d3454ca7de
commit dc5992f990

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

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

Loading…
Cancel
Save