@@ -166,7 +166,7 @@ function getStatusIcon(status: string): string {
166166 case ' completed' :
167167 return ' i-lucide:check-filled'
168168 case ' failed' :
169- return ' i-lucide:circle- x-filled'
169+ return ' i-lucide:x-filled'
170170 default :
171171 return ' i-lucide:circle-question-mark'
172172 }
@@ -292,7 +292,7 @@ watch(isExecuting, executing => {
292292 :aria-label =" $t('operations.queue.remove_operation')"
293293 @click =" removeOperation(op.id)"
294294 >
295- <span class =" i-lucide:circle- x w-4 h-4" aria-hidden =" true" />
295+ <span class =" i-lucide:x w-4 h-4" aria-hidden =" true" />
296296 </button >
297297 </div >
298298 </li >
@@ -411,7 +411,7 @@ watch(isExecuting, executing => {
411411 :class ="
412412 op.status === 'completed'
413413 ? 'i-lucide:check-filled text-green-500'
414- : 'i-lucide:circle- x-filled text-red-500'
414+ : 'i-lucide:x-filled text-red-500'
415415 "
416416 class =" w-3.5 h-3.5 shrink-0 mt-0.5"
417417 aria-hidden =" true"
@@ -431,7 +431,7 @@ watch(isExecuting, executing => {
431431 :aria-label =" $t('operations.queue.remove_from_log')"
432432 @click =" removeOperation(op.id)"
433433 >
434- <span class =" i-lucide:circle- x w-3 h-3" aria-hidden =" true" />
434+ <span class =" i-lucide:x w-3 h-3" aria-hidden =" true" />
435435 </button >
436436 </li >
437437 </ul >
0 commit comments