refactor(editor): Apply Prettier (no-changelog) (#4920)

*  Adjust `format` script

* 🔥 Remove exemption for `editor-ui`

* 🎨 Prettify

* 👕 Fix lint
This commit is contained in:
Iván Ovejero
2022-12-14 10:04:10 +01:00
committed by GitHub
parent bcde07e032
commit 5ca2148c7e
284 changed files with 19247 additions and 15540 deletions

View File

@@ -1,6 +1,11 @@
<template>
<div
:class="[$style.card, lastItem && $style.last, firstItem && $style.first, !loading && $style.loaded]"
:class="[
$style.card,
lastItem && $style.last,
firstItem && $style.first,
!loading && $style.loaded,
]"
@click="onCardClick"
>
<div :class="$style.loading" v-if="loading">
@@ -20,7 +25,9 @@
<TimeAgo :date="workflow.createdAt" />
</n8n-text>
<div v-if="workflow.user" :class="$style.line" v-text="'|'" />
<n8n-text v-if="workflow.user" size="small" color="text-light">By {{ workflow.user.username }}</n8n-text>
<n8n-text v-if="workflow.user" size="small" color="text-light"
>By {{ workflow.user.username }}</n8n-text
>
</div>
</div>
<div :class="[$style.nodesContainer, useWorkflowButton && $style.hideOnHover]" v-if="!loading">
@@ -172,5 +179,4 @@ export default mixins(genericHelpers).extend({
align-items: center;
flex-grow: 1;
}
</style>