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,10 +1,10 @@
<template>
<div :class="$style.container">
<div :class="$style.logoContainer">
<Logo />
<Logo />
</div>
<div v-if="subtitle" :class="$style.textContainer">
<n8n-text size="large">{{subtitle}}</n8n-text>
<n8n-text size="large">{{ subtitle }}</n8n-text>
</div>
<div :class="$style.formContainer">
<n8n-form-box
@@ -30,8 +30,7 @@ export default Vue.extend({
Logo,
},
props: {
form: {
},
form: {},
formLoading: {
type: Boolean,
default: false,
@@ -41,10 +40,10 @@ export default Vue.extend({
},
},
methods: {
onInput(e: {name: string, value: string}) {
onInput(e: { name: string; value: string }) {
this.$emit('input', e);
},
onSubmit(values: {[key: string]: string}) {
onSubmit(values: { [key: string]: string }) {
this.$emit('submit', values);
},
onSecondaryClick() {
@@ -86,9 +85,7 @@ body {
</style>
<style lang="scss">
.el-checkbox__label span {
font-size: var(--font-size-2xs) !important;
}
</style>