Skip to content

Commit 2d7906c

Browse files
committed
history header display current dropdown option
1 parent 9212948 commit 2d7906c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/shared/NavBarBell.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export default {
150150
async beforeMount() {
151151
await this.fetchNotifications();
152152
await this.newNotificationCheck();
153-
this.fetchNotificationsIntervalId = setInterval(this.fetchNewNotifications, 5000);
153+
this.fetchNotificationsIntervalId = setInterval(this.fetchNewNotifications, 10000);
154154
this.notificationsFetched = true;
155155
},
156156
beforeDestroy() {

frontend/src/views/app/History.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div v-if="!historyFetched" class="mx-auto flex items-center justify-center mt-32">
55
<img class="h-36" src="../../assets/loading.svg">
66
</div>
7-
<section v-else class="mx-auto mt-4">
7+
<section v-bind:class="{'mx-auto': true, 'mt-4': true, 'invisible': !historyFetched}">
88
<div class="flex items-center justify-center md:justify-start w-full mb-4">
99
<h1
1010
class="text-3xl sm:text-5xl my-4 inline-block text-center leading-none onboarding-sub-container-content-heading">

0 commit comments

Comments
 (0)