mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: Fix some vue warnings (no-changelog) (#9069)
This commit is contained in:
parent
f4f0a36fe1
commit
50dd90db1a
|
@ -11,8 +11,8 @@ import InlineExpressionTip from './InlineExpressionTip.vue';
|
||||||
|
|
||||||
interface InlineExpressionEditorOutputProps {
|
interface InlineExpressionEditorOutputProps {
|
||||||
segments: Segment[];
|
segments: Segment[];
|
||||||
unresolvedExpression: string;
|
|
||||||
hoveringItemNumber: number;
|
hoveringItemNumber: number;
|
||||||
|
unresolvedExpression?: string;
|
||||||
editorState?: EditorState;
|
editorState?: EditorState;
|
||||||
selection?: SelectionRange;
|
selection?: SelectionRange;
|
||||||
isReadOnly?: boolean;
|
isReadOnly?: boolean;
|
||||||
|
@ -26,6 +26,7 @@ const props = withDefaults(defineProps<InlineExpressionEditorOutputProps>(), {
|
||||||
noInputData: false,
|
noInputData: false,
|
||||||
editorState: undefined,
|
editorState: undefined,
|
||||||
selection: undefined,
|
selection: undefined,
|
||||||
|
unresolvedExpression: undefined,
|
||||||
});
|
});
|
||||||
|
|
||||||
const i18n = useI18n();
|
const i18n = useI18n();
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
:label="buttonLabel"
|
:label="buttonLabel"
|
||||||
:type="type"
|
:type="type"
|
||||||
:size="size"
|
:size="size"
|
||||||
:icon="!isListeningForEvents && !hideIcon && 'flask'"
|
:icon="!isListeningForEvents && !hideIcon ? 'flask' : undefined"
|
||||||
:transparent-background="transparent"
|
:transparent-background="transparent"
|
||||||
:title="!isTriggerNode ? $locale.baseText('ndv.execute.testNode.description') : ''"
|
:title="!isTriggerNode ? $locale.baseText('ndv.execute.testNode.description') : ''"
|
||||||
@click="onClick"
|
@click="onClick"
|
||||||
|
|
Loading…
Reference in a new issue