commit: af734afe3694ff3c77d4457b93b02309c4f55d6d
parent f31bec7ef8bbe1659870d3f771f6b6bb1e689585
Author: Henry Jameson <me@hjkos.com>
Date: Wed, 24 Aug 2022 22:46:41 +0300
lint
Diffstat:
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git 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
@@ -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 () {