Skip to content

Commit

Permalink
fix: Fix some vue warnings (no-changelog) (#9069)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Apr 8, 2024
1 parent f4f0a36 commit 50dd90d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -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;
Expand All @@ -26,6 +26,7 @@ const props = withDefaults(defineProps<InlineExpressionEditorOutputProps>(), {
noInputData: false,
editorState: undefined,
selection: undefined,
unresolvedExpression: undefined,
});
const i18n = useI18n();
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/NodeExecuteButton.vue
Expand Up @@ -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"
Expand Down

0 comments on commit 50dd90d

Please sign in to comment.