Skip to content

Commit

Permalink
chore(nodes): change trigger icon for bolt icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed May 14, 2024
1 parent 2770f91 commit 1567456
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/nodes/CollapsedClusterNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<script>
import {EVENTS} from "../../utils/constants.js";
import ArrowExpand from "vue-material-design-icons/ArrowExpand.vue";
import Webhook from "vue-material-design-icons/Webhook.vue";
import LightningBolt from "vue-material-design-icons/LightningBolt.vue";
import {Handle} from "@vue-flow/core";
import Tooltip from "../misc/Tooltip.vue";
Expand All @@ -39,7 +39,7 @@
Tooltip,
Handle,
ArrowExpand,
Webhook
LightningBolt
},
inheritAttrs: false,
props: {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/VueFlowUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export default class VueFlowUtils {
color: color,
expandable: this.isExpandableTask(node, clusterByNodeUid, edgeReplacer, enableSubflowInteraction),
isReadOnly: isReadOnlyTask,
iconComponent: this.isCollapsedCluster(node) ? "webhook" : null,
iconComponent: this.isCollapsedCluster(node) ? "lightning-bolt" : null,
executionId: node.executionId,
unused: node.unused
},
Expand Down

0 comments on commit 1567456

Please sign in to comment.