commit: d3d219f15d4bac88f58d4fd0fed6f798b81cca82
parent 8d623ab1ea098b107c8aa22f01a410066f6b0d60
Author: Henry Jameson <me@hjkos.com>
Date: Thu, 7 Apr 2022 14:37:16 +0300
fix interactions page
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js
@@ -65,8 +65,7 @@ const Notifications = {
},
noHeading () {
const { layoutType } = this.$store.state.interface
- console.log(layoutType)
- return layoutType === 'mobile'
+ return this.minimalMode || layoutType === 'mobile'
},
teleportTarget () {
const { layoutType } = this.$store.state.interface
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue
@@ -1,5 +1,5 @@
<template>
- <teleport :to="teleportTarget">
+ <teleport :disabled="minimalMode" :to="teleportTarget">
<div
:class="{ minimal: minimalMode }"
class="Notifications"