Skip to content
Snippets Groups Projects
Unverified Commit 2f41f12a authored by Kagami Sascha Rosylight's avatar Kagami Sascha Rosylight Committed by GitHub
Browse files

fix(client): Make `isTimelineAvailable` a reference (#9906)

* Make `isTimelineAvailable` a reference

* Update b.vue
parent 9f0e0dc8
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ const announcements = {
limit: 10,
};
const isTimelineAvailable = instance.policies.ltlAvailable || instance.policies.gtlAvailable;
const isTimelineAvailable = $ref(instance.policies?.ltlAvailable || instance.policies?.gtlAvailable);
let showMenu = $ref(false);
let isDesktop = $ref(window.innerWidth >= DESKTOP_THRESHOLD);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment