Adds basic low feedback mode implementation

This commit is contained in:
Tony Edwards
2023-12-05 07:31:03 +00:00
parent a26f37aa49
commit 1b06dbd78c
4 changed files with 30 additions and 4 deletions
+4 -1
View File
@@ -27,7 +27,7 @@
<p v-if="subtitle" class="text-gray-100 text-base">{{ subtitle }}</p>
</div>
<div v-if="hasLocal" class="mx-1">
<div v-if="hasLocal && !isLowFeedback" class="mx-1">
<div v-if="isLocalOnly" class="w-full rounded-md bg-warning/10 border border-warning p-4">
<p class="text-sm">{{ $strings.MessageMediaNotLinkedToServer }}</p>
</div>
@@ -454,6 +454,9 @@ export default {
if (width * this.bookCoverAspectRatio > 325) width = 325 / this.bookCoverAspectRatio
return width
},
isLowFeedback() {
return this.$store.state.deviceData.deviceSettings.enableLowFeedbackMode
}
},
methods: {