mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor: Fix type issues for parameter input components (#9449)
This commit is contained in:
@@ -537,7 +537,7 @@ type Props = {
|
||||
hint?: string;
|
||||
inputSize?: InputSize;
|
||||
eventSource?: string;
|
||||
expressionEvaluated?: string;
|
||||
expressionEvaluated: unknown;
|
||||
documentationUrl?: string;
|
||||
isAssignment?: boolean;
|
||||
isReadOnly?: boolean;
|
||||
@@ -555,7 +555,6 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
hint: undefined,
|
||||
inputSize: undefined,
|
||||
eventSource: undefined,
|
||||
expressionEvaluated: undefined,
|
||||
documentationUrl: undefined,
|
||||
isReadOnly: false,
|
||||
isAssignment: false,
|
||||
@@ -1266,7 +1265,7 @@ async function optionSelected(command: string) {
|
||||
|
||||
await setFocus();
|
||||
} else if (command === 'removeExpression') {
|
||||
let value: NodeParameterValueType = props.expressionEvaluated;
|
||||
let value = props.expressionEvaluated;
|
||||
|
||||
isFocused.value = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user