Skip to content

Commit

Permalink
👕 Breaking up long line
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic committed Jul 30, 2024
1 parent 4c24b73 commit bde612e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/editor-ui/src/components/Error/NodeErrorView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ const prepareRawMessages = computed(() => {
});
const isAskAssistantAvailable = computed(() => {
const isCustomNode = props.error.node?.type === undefined || isCommunityPackageName(props.error.node);
const isCustomNode =
props.error.node?.type === undefined || isCommunityPackageName(props.error.node);
return assistantStore.canShowAssistantButtons && !isCustomNode;
});
Expand Down

0 comments on commit bde612e

Please sign in to comment.