From 653953e2bdf948889ee0de3ec9d42d29b58cc6cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Tue, 18 Jun 2024 17:05:01 +0200 Subject: [PATCH] ci: Fix typecheck to fix build (no-changelog) (#9792) --- packages/editor-ui/src/components/ParameterInputList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/ParameterInputList.vue b/packages/editor-ui/src/components/ParameterInputList.vue index 998344cad..2d554af37 100644 --- a/packages/editor-ui/src/components/ParameterInputList.vue +++ b/packages/editor-ui/src/components/ParameterInputList.vue @@ -205,7 +205,7 @@ type Props = { path?: string; hideDelete?: boolean; indent?: boolean; - isReadOnly?: boolean; + isReadOnly: boolean; hiddenIssuesInputs?: string[]; entryIndex?: number; };