mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
chore: Fix CI type-checking issue (no-changelog) (#13067)
This commit is contained in:
parent
2492c35e90
commit
a7792684a6
|
@ -61,7 +61,7 @@ function valueChanged(parameterData: IUpdateInformation) {
|
||||||
:path="`${path}.${name}`"
|
:path="`${path}.${name}`"
|
||||||
input-size="small"
|
input-size="small"
|
||||||
@update="
|
@update="
|
||||||
(x) => {
|
(x: IUpdateInformation) => {
|
||||||
parameterOverride.extraPropValues[name] = x.value;
|
parameterOverride.extraPropValues[name] = x.value;
|
||||||
valueChanged({
|
valueChanged({
|
||||||
name: props.path,
|
name: props.path,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { ResourceLocatorRequestDto } from '@n8n/api-types';
|
import type { ResourceLocatorRequestDto } from '@n8n/api-types';
|
||||||
import type { IResourceLocatorResultExpanded } from '@/Interface';
|
import type { IResourceLocatorResultExpanded, IUpdateInformation } from '@/Interface';
|
||||||
import DraggableTarget from '@/components/DraggableTarget.vue';
|
import DraggableTarget from '@/components/DraggableTarget.vue';
|
||||||
import ExpressionParameterInput from '@/components/ExpressionParameterInput.vue';
|
import ExpressionParameterInput from '@/components/ExpressionParameterInput.vue';
|
||||||
import ParameterIssues from '@/components/ParameterIssues.vue';
|
import ParameterIssues from '@/components/ParameterIssues.vue';
|
||||||
|
@ -928,7 +928,7 @@ function removeOverride() {
|
||||||
:parameter="parameter"
|
:parameter="parameter"
|
||||||
:path="path"
|
:path="path"
|
||||||
:is-read-only="isReadOnly"
|
:is-read-only="isReadOnly"
|
||||||
@update="(x) => onInputChange(x.value?.toString())"
|
@update="(x: IUpdateInformation) => onInputChange(x.value?.toString())"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue