Skip to content

Commit

Permalink
wording
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Aug 21, 2023
1 parent 74e3aa4 commit bb1f1c1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
:color="dash_negative_color"
text-color="black"
icon="warning"
>Certificate expires in {{ daysUntilCertExpires }} days</q-chip
>SSL certificate expires in {{ daysUntilCertExpires }} days</q-chip
>
</q-toolbar-title>
<!-- temp dark mode toggle -->
Expand Down Expand Up @@ -288,7 +288,7 @@ export default {
if (!token.value) {
console.log(
"Access token is null or invalid, not setting up WebSocket"
"Access token is null or invalid, not setting up WebSocket",
);
return;
}
Expand Down Expand Up @@ -325,10 +325,13 @@ export default {
const poll = ref(null);
function livePoll() {
poll.value = setInterval(() => {
store.dispatch("checkVer");
store.dispatch("getDashInfo", false);
}, 60 * 4 * 1000);
poll.value = setInterval(
() => {
store.dispatch("checkVer");
store.dispatch("getDashInfo", false);
},
60 * 4 * 1000,
);
}
const updateAvailable = computed(() => {
Expand Down

0 comments on commit bb1f1c1

Please sign in to comment.