aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/notifications/notifications.vue16
-rw-r--r--src/components/timeline/timeline.js2
2 files changed, 9 insertions, 9 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue
index 7577164d..08d65439 100644
--- a/src/components/notifications/notifications.vue
+++ b/src/components/notifications/notifications.vue
@@ -4,9 +4,9 @@
:to="teleportTarget"
>
<div
+ ref="root"
:class="{ minimal: minimalMode }"
class="Notifications"
- ref="root"
>
<div :class="mainClass">
<div
@@ -26,13 +26,13 @@
type="button"
@click="scrollToTop"
>
- <FALayers class="fa-scale-110 fa-old-padding-layer">
- <FAIcon icon="arrow-up" />
- <FAIcon
- icon="minus"
- transform="up-7"
- />
- </FALayers>
+ <FALayers class="fa-scale-110 fa-old-padding-layer">
+ <FAIcon icon="arrow-up" />
+ <FAIcon
+ icon="minus"
+ transform="up-7"
+ />
+ </FALayers>
</button>
<button
v-if="unseenCount"
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 4eb63f84..f4efc5e8 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -95,7 +95,7 @@ const Timeline = {
return this.$store.getters.mergedConfig.virtualScrolling
},
...mapState({
- mobileLayout: state => state.interface.layoutType === 'mobile',
+ mobileLayout: state => state.interface.layoutType === 'mobile'
})
},
created () {