mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(editor): Stricter linting for promises and async functions (no-changelog) (#4642)
This commit is contained in:
@@ -522,7 +522,7 @@ export default mixins(
|
||||
dependentParametersValues() {
|
||||
// Reload the remote parameters whenever a parameter
|
||||
// on which the current field depends on changes
|
||||
this.loadRemoteParameterOptions();
|
||||
void this.loadRemoteParameterOptions();
|
||||
},
|
||||
value() {
|
||||
if (this.parameter.type === 'color' && this.getArgument('showAlpha') === true) {
|
||||
@@ -1116,7 +1116,7 @@ export default mixins(
|
||||
|
||||
resourceLocatorRef?.$emit('refreshList');
|
||||
}
|
||||
this.loadRemoteParameterOptions();
|
||||
void this.loadRemoteParameterOptions();
|
||||
} else if (command === 'formatHtml') {
|
||||
htmlEditorEventBus.emit('format-html');
|
||||
}
|
||||
@@ -1175,7 +1175,7 @@ export default mixins(
|
||||
this.$watch(
|
||||
() => this.node!.credentials,
|
||||
() => {
|
||||
this.loadRemoteParameterOptions();
|
||||
void this.loadRemoteParameterOptions();
|
||||
},
|
||||
{ deep: true, immediate: true },
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user