fix: loop icon

v3.2
wangdan-fit2cloud 2025-09-23 18:45:04 +08:00
parent 52e737c31b
commit 95fb124c07
4 changed files with 6 additions and 6 deletions

View File

@ -381,7 +381,7 @@ export default {
text: 'Used to terminate the current loop and proceed to the next one.', text: 'Used to terminate the current loop and proceed to the next one.',
}, },
loopBreakNode: { loopBreakNode: {
label: 'Exit Loop', label: 'Break',
text: 'Terminate the current loop and exit the loop body', text: 'Terminate the current loop and exit the loop body',
}, },
}, },

View File

@ -377,11 +377,11 @@ export default {
text: '循环体', text: '循环体',
}, },
loopContinueNode: { loopContinueNode: {
label: '跳过', label: 'Continue',
text: '用于终止当前循环,执行下次循环', text: '用于终止当前循环,执行下次循环',
}, },
loopBreakNode: { loopBreakNode: {
label: '退出循环', label: 'Break',
text: '终止当前循环,跳出循环体', text: '终止当前循环,跳出循环体',
}, },
}, },

View File

@ -366,8 +366,8 @@ export default {
loopVariable: '循環變量', loopVariable: '循環變量',
}, },
loopBodyNode: { label: '循環體', text: '循環體' }, loopBodyNode: { label: '循環體', text: '循環體' },
loopContinueNode: { label: '跳過', text: '用於終止當前循環,執行下次循環' }, loopContinueNode: { label: 'Continue', text: '用於終止當前循環,執行下次循環' },
loopBreakNode: { label: '退出循環', text: '終止當前循環,跳出循環體' }, loopBreakNode: { label: 'Break', text: '終止當前循環,跳出循環體' },
}, },
compare: { compare: {
is_null: '為空', is_null: '為空',

View File

@ -1,6 +1,6 @@
<template> <template>
<el-avatar class="avatar-green" shape="square"> <el-avatar class="avatar-green" shape="square">
<img src="@/assets/workflow/icon_loop_break.svg" style="width: 75%" alt="" /> <img src="@/assets/workflow/icon_loop.svg" style="width: 75%" alt="" />
</el-avatar> </el-avatar>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts"></script>