fix: Fix some vue warnings (no-changelog) (#9069)

This commit is contained in:
Tomi Turtiainen 2024-04-08 13:08:28 +03:00 committed by GitHub
parent f4f0a36fe1
commit 50dd90db1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -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();

View file

@ -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"