mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
refactor(editor): Stricter linting for promises and async functions (no-changelog) (#4642)
This commit is contained in:
@@ -529,7 +529,7 @@ export default mixins(
|
||||
onWorkflowActivate() {
|
||||
this.ndvStore.activeNodeName = null;
|
||||
setTimeout(() => {
|
||||
this.activateCurrentWorkflow('ndv');
|
||||
void this.activateCurrentWorkflow('ndv');
|
||||
}, 1000);
|
||||
},
|
||||
onFeatureRequestClick() {
|
||||
@@ -643,7 +643,7 @@ export default mixins(
|
||||
this.ndvStore.setOutputPanelEditModeEnabled(false);
|
||||
}
|
||||
|
||||
this.$externalHooks().run('dataDisplay.nodeEditingFinished');
|
||||
await this.$externalHooks().run('dataDisplay.nodeEditingFinished');
|
||||
this.$telemetry.track('User closed node modal', {
|
||||
node_type: this.activeNodeType ? this.activeNodeType.name : '',
|
||||
session_id: this.sessionId,
|
||||
|
||||
Reference in New Issue
Block a user