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}`"
|
||||
input-size="small"
|
||||
@update="
|
||||
(x) => {
|
||||
(x: IUpdateInformation) => {
|
||||
parameterOverride.extraPropValues[name] = x.value;
|
||||
valueChanged({
|
||||
name: props.path,
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue