mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Fix some vue warnings (no-changelog) (#9069)
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user