mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: loop icon
This commit is contained in:
parent
52e737c31b
commit
95fb124c07
|
|
@ -381,7 +381,7 @@ export default {
|
|||
text: 'Used to terminate the current loop and proceed to the next one.',
|
||||
},
|
||||
loopBreakNode: {
|
||||
label: 'Exit Loop',
|
||||
label: 'Break',
|
||||
text: 'Terminate the current loop and exit the loop body',
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -377,11 +377,11 @@ export default {
|
|||
text: '循环体',
|
||||
},
|
||||
loopContinueNode: {
|
||||
label: '跳过',
|
||||
label: 'Continue',
|
||||
text: '用于终止当前循环,执行下次循环',
|
||||
},
|
||||
loopBreakNode: {
|
||||
label: '退出循环',
|
||||
label: 'Break',
|
||||
text: '终止当前循环,跳出循环体',
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -366,8 +366,8 @@ export default {
|
|||
loopVariable: '循環變量',
|
||||
},
|
||||
loopBodyNode: { label: '循環體', text: '循環體' },
|
||||
loopContinueNode: { label: '跳過', text: '用於終止當前循環,執行下次循環' },
|
||||
loopBreakNode: { label: '退出循環', text: '終止當前循環,跳出循環體' },
|
||||
loopContinueNode: { label: 'Continue', text: '用於終止當前循環,執行下次循環' },
|
||||
loopBreakNode: { label: 'Break', text: '終止當前循環,跳出循環體' },
|
||||
},
|
||||
compare: {
|
||||
is_null: '為空',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<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>
|
||||
</template>
|
||||
<script setup lang="ts"></script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue