mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +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:
@@ -55,10 +55,7 @@ export default mixins(workflowHelpers).extend({
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapStores(
|
||||
useRootStore,
|
||||
useSettingsStore,
|
||||
),
|
||||
...mapStores(useRootStore, useSettingsStore),
|
||||
title(): string {
|
||||
if (this.settingsStore.promptsData && this.settingsStore.promptsData.title) {
|
||||
return this.settingsStore.promptsData.title;
|
||||
@@ -88,7 +85,9 @@ export default mixins(workflowHelpers).extend({
|
||||
},
|
||||
async send() {
|
||||
if (this.isEmailValid) {
|
||||
const response = await this.settingsStore.submitContactInfo(this.email) as IN8nPromptResponse;
|
||||
const response = (await this.settingsStore.submitContactInfo(
|
||||
this.email,
|
||||
)) as IN8nPromptResponse;
|
||||
|
||||
if (response.updated) {
|
||||
this.$telemetry.track('User closed email modal', {
|
||||
|
||||
Reference in New Issue
Block a user