mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
ci(editor): Enfore stricter linting rules from eslint-plugin-vue (no-changelog) (#6242)
This commit is contained in:
committed by
GitHub
parent
8a8fed0840
commit
4b5cbe7750
@@ -367,11 +367,7 @@ import type {
|
||||
import { NodeHelpers } from 'n8n-workflow';
|
||||
|
||||
import CredentialsSelect from '@/components/CredentialsSelect.vue';
|
||||
import ImportParameter from '@/components/ImportParameter.vue';
|
||||
import ExpressionEdit from '@/components/ExpressionEdit.vue';
|
||||
import NodeCredentials from '@/components/NodeCredentials.vue';
|
||||
import ScopesNotice from '@/components/ScopesNotice.vue';
|
||||
import ParameterOptions from '@/components/ParameterOptions.vue';
|
||||
import ParameterIssues from '@/components/ParameterIssues.vue';
|
||||
import ResourceLocator from '@/components/ResourceLocator/ResourceLocator.vue';
|
||||
import ExpressionParameterInput from '@/components/ExpressionParameterInput.vue';
|
||||
@@ -405,14 +401,10 @@ export default defineComponent({
|
||||
SqlEditor,
|
||||
ExpressionEdit,
|
||||
ExpressionParameterInput,
|
||||
NodeCredentials,
|
||||
CredentialsSelect,
|
||||
ScopesNotice,
|
||||
ParameterOptions,
|
||||
ParameterIssues,
|
||||
ResourceLocator,
|
||||
TextEdit,
|
||||
ImportParameter,
|
||||
},
|
||||
props: {
|
||||
isReadOnly: {
|
||||
@@ -1009,7 +1001,7 @@ export default defineComponent({
|
||||
this.$emit('textInput', parameterData);
|
||||
},
|
||||
valueChangedDebounced(value: NodeParameterValueType | {} | Date) {
|
||||
this.callDebounced('valueChanged', { debounceTime: 100 }, value);
|
||||
void this.callDebounced('valueChanged', { debounceTime: 100 }, value);
|
||||
},
|
||||
valueChanged(value: NodeParameterValueType | {} | Date) {
|
||||
if (this.parameter.name === 'nodeCredentialType') {
|
||||
|
||||
Reference in New Issue
Block a user