mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +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}`"
|
: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>
|
||||||
|
|||||||
Reference in New Issue
Block a user