refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -289,17 +289,17 @@ defineExpose({
|
||||
:label="valuesLabel"
|
||||
:underline="true"
|
||||
:size="labelSize"
|
||||
:showOptions="true"
|
||||
:showExpressionSelector="false"
|
||||
inputName="columns"
|
||||
:show-options="true"
|
||||
:show-expression-selector="false"
|
||||
input-name="columns"
|
||||
color="text-dark"
|
||||
>
|
||||
<template #options>
|
||||
<parameter-options
|
||||
<ParameterOptions
|
||||
:parameter="parameter"
|
||||
:customActions="parameterActions"
|
||||
:custom-actions="parameterActions"
|
||||
:loading="props.refreshInProgress"
|
||||
:loadingMessage="fetchingFieldsLabel"
|
||||
:loading-message="fetchingFieldsLabel"
|
||||
@update:modelValue="onParameterActionSelected"
|
||||
/>
|
||||
</template>
|
||||
@@ -360,19 +360,19 @@ defineExpose({
|
||||
></n8n-icon-button>
|
||||
</div>
|
||||
<div :class="$style.parameterInput">
|
||||
<parameter-input-full
|
||||
<ParameterInputFull
|
||||
:parameter="field"
|
||||
:value="getParameterValue(field.name)"
|
||||
:displayOptions="true"
|
||||
:display-options="true"
|
||||
:path="`${props.path}.${field.name}`"
|
||||
:isReadOnly="refreshInProgress || field.readOnly"
|
||||
:hideIssues="true"
|
||||
:nodeValues="nodeValues"
|
||||
:is-read-only="refreshInProgress || field.readOnly"
|
||||
:hide-issues="true"
|
||||
:node-values="nodeValues"
|
||||
:class="$style.parameterInputFull"
|
||||
@update="onValueChanged"
|
||||
/>
|
||||
</div>
|
||||
<parameter-issues
|
||||
<ParameterIssues
|
||||
v-if="getFieldIssues(field).length > 0"
|
||||
:issues="getFieldIssues(field)"
|
||||
:class="[$style.parameterIssues, 'ml-5xs']"
|
||||
|
||||
Reference in New Issue
Block a user