mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
refactor(editor): Apply Prettier (no-changelog) (#4920)
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user