Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-08 14:41:07 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-08 14:41:07 +0300
commitf47f9c6785618c8020c3e8f4ebb53f5b3a1076ae (patch)
tree002cef0919301fa5dc2fca31e616d05e7665ee26 /apps
parent5c8e949a55c031205824334a3553eea8497bcee3 (diff)
Fix eslint line breaks
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/workflowengine/src/components/Checks/FileMimeType.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/workflowengine/src/components/Checks/FileMimeType.vue b/apps/workflowengine/src/components/Checks/FileMimeType.vue
index bdbe0a56ccd..7c4ea4d145e 100644
--- a/apps/workflowengine/src/components/Checks/FileMimeType.vue
+++ b/apps/workflowengine/src/components/Checks/FileMimeType.vue
@@ -32,12 +32,18 @@
@input="setValue">
<template slot="singleLabel" slot-scope="props">
<span v-if="props.option.icon" class="option__icon" :class="props.option.icon" />
- <img v-else class="option__icon-img" :src="props.option.iconUrl" alt="">
+ <img v-else
+ class="option__icon-img"
+ :src="props.option.iconUrl"
+ alt="">
<span class="option__title option__title_single">{{ props.option.label }}</span>
</template>
<template slot="option" slot-scope="props">
<span v-if="props.option.icon" class="option__icon" :class="props.option.icon" />
- <img v-else class="option__icon-img" :src="props.option.iconUrl" alt="">
+ <img v-else
+ class="option__icon-img"
+ :src="props.option.iconUrl"
+ alt="">
<span class="option__title">{{ props.option.label }}</span>
</template>
</Multiselect>