Skip to content

Commit 95d3665

Browse files
fix: workflow name too long style
1 parent a4f8d59 commit 95d3665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/workflow/common/NodeContainer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="flex-between">
1010
<div
1111
class="flex align-center"
12-
:style="{ maxWidth: node_status == 200 ? 'calc(100% - 55px)' : 'calc(100% - 85px)' }"
12+
:style="{ maxWidth: node_status == 200 ? 'calc(100% - 85px)' : 'calc(100% - 85px)' }"
1313
>
1414
<component
1515
:is="iconComponent(`${nodeModel.type}-icon`)"
@@ -31,7 +31,7 @@
3131
<h4 v-else>{{ nodeModel.properties.stepName }}</h4>
3232
</div>
3333

34-
<div @mousemove.stop @mousedown.stop @keydown.stop @click.stop>
34+
<div @mousemove.stop @mousedown.stop @keydown.stop @click.stop >
3535
<el-button text @click="showNode = !showNode">
3636
<el-icon class="arrow-icon color-secondary" :class="showNode ? 'rotate-180' : ''"
3737
><ArrowDownBold />

0 commit comments

Comments
 (0)