We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f8d59 commit 95d3665Copy full SHA for 95d3665
ui/src/workflow/common/NodeContainer.vue
@@ -9,7 +9,7 @@
9
<div class="flex-between">
10
<div
11
class="flex align-center"
12
- :style="{ maxWidth: node_status == 200 ? 'calc(100% - 55px)' : 'calc(100% - 85px)' }"
+ :style="{ maxWidth: node_status == 200 ? 'calc(100% - 85px)' : 'calc(100% - 85px)' }"
13
>
14
<component
15
:is="iconComponent(`${nodeModel.type}-icon`)"
@@ -31,7 +31,7 @@
31
<h4 v-else>{{ nodeModel.properties.stepName }}</h4>
32
</div>
33
34
- <div @mousemove.stop @mousedown.stop @keydown.stop @click.stop>
+ <div @mousemove.stop @mousedown.stop @keydown.stop @click.stop >
35
<el-button text @click="showNode = !showNode">
36
<el-icon class="arrow-icon color-secondary" :class="showNode ? 'rotate-180' : ''"
37
><ArrowDownBold />
0 commit comments