mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: correct all the spelling typos (#3960)
* Improve code health Fix TS typos in local variables Fix CSS typos in local styles Fix typos in comments Fix typos in strings * Fix order of n8n setup sections in CONTRIBUTING.md
This commit is contained in:
@@ -991,11 +991,11 @@ export default mixins(
|
||||
// Reload function on change element from
|
||||
// displayOptions.typeOptions.reloadOnChange parameters
|
||||
if (this.parameter.typeOptions && this.parameter.typeOptions.reloadOnChange) {
|
||||
// Get all paramter in reloadOnChange property
|
||||
// Get all parameter in reloadOnChange property
|
||||
// This reload when parameters in reloadOnChange is updated
|
||||
const paramtersOnChange : string[] = this.parameter.typeOptions.reloadOnChange;
|
||||
for (let i = 0; i < paramtersOnChange.length; i++) {
|
||||
const parameter = paramtersOnChange[i] as string;
|
||||
const parametersOnChange : string[] = this.parameter.typeOptions.reloadOnChange;
|
||||
for (let i = 0; i < parametersOnChange.length; i++) {
|
||||
const parameter = parametersOnChange[i] as string;
|
||||
if (parameter in this.node.parameters) {
|
||||
this.$watch(() => {
|
||||
if (this.node && this.node.parameters && this.node.parameters[parameter]) {
|
||||
|
||||
Reference in New Issue
Block a user