chore: Fix CI type-checking issue (no-changelog) (#13067)

This commit is contained in:
Charlie Kolb 2025-02-05 11:53:39 +01:00 committed by GitHub
parent 2492c35e90
commit a7792684a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -61,7 +61,7 @@ function valueChanged(parameterData: IUpdateInformation) {
:path="`${path}.${name}`"
input-size="small"
@update="
(x) => {
(x: IUpdateInformation) => {
parameterOverride.extraPropValues[name] = x.value;
valueChanged({
name: props.path,

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
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 ExpressionParameterInput from '@/components/ExpressionParameterInput.vue';
import ParameterIssues from '@/components/ParameterIssues.vue';
@ -928,7 +928,7 @@ function removeOverride() {
:parameter="parameter"
:path="path"
:is-read-only="isReadOnly"
@update="(x) => onInputChange(x.value?.toString())"
@update="(x: IUpdateInformation) => onInputChange(x.value?.toString())"
/>
</div>
</template>