mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(editor): Fix typescript issues in composables and misc files (no-changelog) (#9583)
This commit is contained in:
@@ -144,7 +144,7 @@ function focusFirstInput() {
|
||||
required
|
||||
validate-on-blur
|
||||
:validation-rules="keyValidationRules"
|
||||
@validate="(value) => onValidate('key', value)"
|
||||
@validate="(value: boolean) => onValidate('key', value)"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
@@ -161,7 +161,7 @@ function focusFirstInput() {
|
||||
:placeholder="i18n.baseText('variables.editing.value.placeholder')"
|
||||
validate-on-blur
|
||||
:validation-rules="valueValidationRules"
|
||||
@validate="(value) => onValidate('value', value)"
|
||||
@validate="(value: boolean) => onValidate('value', value)"
|
||||
/>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user