diff --git a/src/components/CFP/Header.vue b/src/components/CFP/Header.vue
index 562f86e..964a84c 100644
--- a/src/components/CFP/Header.vue
+++ b/src/components/CFP/Header.vue
@@ -55,7 +55,7 @@
-
+
diff --git a/src/components/news/Header.vue b/src/components/news/Header.vue
index 6ba2878..ffe1278 100644
--- a/src/components/news/Header.vue
+++ b/src/components/news/Header.vue
@@ -98,7 +98,9 @@ export default class CfpHeader extends Vue {
}
private async onTick (t: number) {
- if (t<0) this.cfp = false;
+ if (t < 0) {
+ this.cfp = false;
+ }
this.countdown.s = t % 60;
t = Math.floor(t / 60);
this.countdown.m = t % 60;
diff --git a/src/components/news/Navbar.vue b/src/components/news/Navbar.vue
index 8735248..a8ed5e8 100644
--- a/src/components/news/Navbar.vue
+++ b/src/components/news/Navbar.vue
@@ -78,7 +78,7 @@ export default class Navbar extends Vue {
this.isNavbarReturning = true;
}
- this.isNavbarAnimating = true;
+ this.isNavbarAnimating = true;
}
}
});
diff --git a/src/components/ocfp-news/Header.vue b/src/components/ocfp-news/Header.vue
index c4eec29..f7cdfef 100644
--- a/src/components/ocfp-news/Header.vue
+++ b/src/components/ocfp-news/Header.vue
@@ -98,7 +98,9 @@ export default class CfpHeader extends Vue {
}
private async onTick (t: number) {
- if (t<0) this.cfp = false;
+ if (t < 0) {
+ this.cfp = false;
+ }
this.countdown.s = t % 60;
t = Math.floor(t / 60);
this.countdown.m = t % 60;
diff --git a/src/components/ocfp-news/Navbar.vue b/src/components/ocfp-news/Navbar.vue
index 817cb4d..4a7185d 100644
--- a/src/components/ocfp-news/Navbar.vue
+++ b/src/components/ocfp-news/Navbar.vue
@@ -43,8 +43,6 @@ export default class Navbar extends Vue {
'#schedule',
'#example',
'#code-of-conduct',
- '#info-section',
- '#process',
'#methods',
'#review',
'#precautions',
@@ -79,8 +77,7 @@ export default class Navbar extends Vue {
this.isNavbarFixed = false;
this.isNavbarReturning = true;
}
-
- this.isNavbarAnimating = true;
+ this.isNavbarAnimating = true;
}
}
});