diff options
author | Joas Schilling <coding@schilljs.com> | 2022-08-08 13:41:07 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-08-08 13:41:07 +0200 |
commit | f47f9c6785618c8020c3e8f4ebb53f5b3a1076ae (patch) | |
tree | 002cef0919301fa5dc2fca31e616d05e7665ee26 /apps/workflowengine | |
parent | 5c8e949a55c031205824334a3553eea8497bcee3 (diff) | |
download | nextcloud-server-f47f9c6785618c8020c3e8f4ebb53f5b3a1076ae.tar.gz nextcloud-server-f47f9c6785618c8020c3e8f4ebb53f5b3a1076ae.zip |
Fix eslint line breaks
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/workflowengine')
-rw-r--r-- | apps/workflowengine/src/components/Checks/FileMimeType.vue | 10 |
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> |