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
packages/editor-ui/src/components
|
@ -11,8 +11,8 @@ import InlineExpressionTip from './InlineExpressionTip.vue';
|
|||
|
||||
interface InlineExpressionEditorOutputProps {
|
||||
segments: Segment[];
|
||||
unresolvedExpression: string;
|
||||
hoveringItemNumber: number;
|
||||
unresolvedExpression?: string;
|
||||
editorState?: EditorState;
|
||||
selection?: SelectionRange;
|
||||
isReadOnly?: boolean;
|
||||
|
@ -26,6 +26,7 @@ const props = withDefaults(defineProps<InlineExpressionEditorOutputProps>(), {
|
|||
noInputData: false,
|
||||
editorState: undefined,
|
||||
selection: undefined,
|
||||
unresolvedExpression: undefined,
|
||||
});
|
||||
|
||||
const i18n = useI18n();
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
:label="buttonLabel"
|
||||
:type="type"
|
||||
:size="size"
|
||||
:icon="!isListeningForEvents && !hideIcon && 'flask'"
|
||||
:icon="!isListeningForEvents && !hideIcon ? 'flask' : undefined"
|
||||
:transparent-background="transparent"
|
||||
:title="!isTriggerNode ? $locale.baseText('ndv.execute.testNode.description') : ''"
|
||||
@click="onClick"
|
||||
|
|
Loading…
Reference in a new issue