mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
style: replace square icon with inbox icon for created status
Icon Update: - created status: square → inbox Rationale: - Inbox icon is more visually intuitive - Better conveys the meaning of 'new/pending task' - Improves visual clarity and user understanding Status Icons Now: - created: 📥 inbox (new/pending) - running: ⚡ zap (active) - paused: ⏸ pause (paused) - completed: ✓ check (finished) - failed: ⚠️ alert-triangle (error)
This commit is contained in:
@@ -305,7 +305,7 @@ function renderLoopCard(loop) {
|
||||
|
||||
// Lucide icons for each status
|
||||
const statusIcons = {
|
||||
created: 'square',
|
||||
created: 'inbox',
|
||||
running: 'zap',
|
||||
paused: 'pause',
|
||||
completed: 'check',
|
||||
@@ -1318,13 +1318,13 @@ window.destroyLoopMonitor = function() {
|
||||
// Helper functions
|
||||
function getStatusIcon(status) {
|
||||
const icons = {
|
||||
created: 'square',
|
||||
created: 'inbox',
|
||||
running: 'zap',
|
||||
paused: 'pause',
|
||||
completed: 'check',
|
||||
failed: 'alert-triangle'
|
||||
};
|
||||
return icons[status] || 'square';
|
||||
return icons[status] || 'inbox';
|
||||
}
|
||||
|
||||
function escapeHtml(text) {
|
||||
|
||||
Reference in New Issue
Block a user