mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: Fix CI type-checking issue (no-changelog) (#13067)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user