From 7efa58a5850ca77457224b4e71261442b4fdb738 Mon Sep 17 00:00:00 2001 From: Lorenz Padberg Date: Thu, 25 Apr 2024 16:04:07 +0200 Subject: [PATCH] fix lint --- client/src/components/modules/Module.vue | 15 ++++++++------- client/src/components/ui/WagtailImage.vue | 2 +- client/src/graphql/queries.ts | 1 - 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client/src/components/modules/Module.vue b/client/src/components/modules/Module.vue index e733c178..7f97b2b8 100644 --- a/client/src/components/modules/Module.vue +++ b/client/src/components/modules/Module.vue @@ -28,12 +28,12 @@ {{ module.title }}
- - -

+      
       
(); let selectionHandler: SelectionHandlerType; diff --git a/client/src/components/ui/WagtailImage.vue b/client/src/components/ui/WagtailImage.vue index b039703f..6f68da4a 100644 --- a/client/src/components/ui/WagtailImage.vue +++ b/client/src/components/ui/WagtailImage.vue @@ -73,8 +73,8 @@ const placeholderStyle = computed(() => { if (props.originalHeight) { styles.height = `${scaledHeight}px`; } - return styles; } + return styles; }); const isHighDensity = () => { diff --git a/client/src/graphql/queries.ts b/client/src/graphql/queries.ts index 26e1e451..c9b2f6ce 100644 --- a/client/src/graphql/queries.ts +++ b/client/src/graphql/queries.ts @@ -1,6 +1,5 @@ import MODULE_DETAILS_QUERY from './gql/queries/modules/moduleDetailsQuery.gql'; import ME_QUERY from './gql/queries/meQuery.gql'; -import WagWAtailImageFragnent from './gql/queries/meQuery.gql'; import { useRoute } from 'vue-router'; import { computed } from 'vue'; import { useQuery } from '@vue/apollo-composable';