Skip to content

Commit 95fb124

Browse files
fix: loop icon
1 parent 52e737c commit 95fb124

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ui/src/locales/lang/en-US/views/application-workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export default {
381381
text: 'Used to terminate the current loop and proceed to the next one.',
382382
},
383383
loopBreakNode: {
384-
label: 'Exit Loop',
384+
label: 'Break',
385385
text: 'Terminate the current loop and exit the loop body',
386386
},
387387
},

ui/src/locales/lang/zh-CN/views/application-workflow.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,11 +377,11 @@ export default {
377377
text: '循环体',
378378
},
379379
loopContinueNode: {
380-
label: '跳过',
380+
label: 'Continue',
381381
text: '用于终止当前循环,执行下次循环',
382382
},
383383
loopBreakNode: {
384-
label: '退出循环',
384+
label: 'Break',
385385
text: '终止当前循环,跳出循环体',
386386
},
387387
},

ui/src/locales/lang/zh-Hant/views/application-workflow.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,8 @@ export default {
366366
loopVariable: '循環變量',
367367
},
368368
loopBodyNode: { label: '循環體', text: '循環體' },
369-
loopContinueNode: { label: '跳過', text: '用於終止當前循環,執行下次循環' },
370-
loopBreakNode: { label: '退出循環', text: '終止當前循環,跳出循環體' },
369+
loopContinueNode: { label: 'Continue', text: '用於終止當前循環,執行下次循環' },
370+
loopBreakNode: { label: 'Break', text: '終止當前循環,跳出循環體' },
371371
},
372372
compare: {
373373
is_null: '為空',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<el-avatar class="avatar-green" shape="square">
3-
<img src="@/assets/workflow/icon_loop_break.svg" style="width: 75%" alt="" />
3+
<img src="@/assets/workflow/icon_loop.svg" style="width: 75%" alt="" />
44
</el-avatar>
55
</template>
66
<script setup lang="ts"></script>

0 commit comments

Comments
 (0)