aboutsummaryrefslogtreecommitdiff
path: root/src-vue
diff options
context:
space:
mode:
authorRemy Raes <raes.remy@gmail.com>2022-12-02 00:47:55 +0100
committerGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-12-02 01:48:27 +0100
commit32c5f61f434fc7572d0382e6f67cb8d4232186e2 (patch)
treeba4227573b2b7eb5bc320a8a3df1560cbe0e8a91 /src-vue
parentdf2446b9d664454a69bf2ca2a80d29d12f33714c (diff)
downloadFlightCore-32c5f61f434fc7572d0382e6f67cb8d4232186e2.tar.gz
FlightCore-32c5f61f434fc7572d0382e6f67cb8d4232186e2.zip
fix: blur all views except main one
Diffstat (limited to 'src-vue')
-rw-r--r--src-vue/src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue
index 189403cc..9096110c 100644
--- a/src-vue/src/App.vue
+++ b/src-vue/src/App.vue
@@ -33,7 +33,7 @@ export default {
computed: {
bgStyle(): string {
// @ts-ignore
- const shouldBlur = ['/thunderstoreMods'].includes(this.$route.path);
+ const shouldBlur = this.$route.path !== "/";
return `filter: brightness(0.8) ${shouldBlur ? 'blur(5px)' : ''};`;
}
}