mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +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
|
// Lucide icons for each status
|
||||||
const statusIcons = {
|
const statusIcons = {
|
||||||
created: 'square',
|
created: 'inbox',
|
||||||
running: 'zap',
|
running: 'zap',
|
||||||
paused: 'pause',
|
paused: 'pause',
|
||||||
completed: 'check',
|
completed: 'check',
|
||||||
@@ -1318,13 +1318,13 @@ window.destroyLoopMonitor = function() {
|
|||||||
// Helper functions
|
// Helper functions
|
||||||
function getStatusIcon(status) {
|
function getStatusIcon(status) {
|
||||||
const icons = {
|
const icons = {
|
||||||
created: 'square',
|
created: 'inbox',
|
||||||
running: 'zap',
|
running: 'zap',
|
||||||
paused: 'pause',
|
paused: 'pause',
|
||||||
completed: 'check',
|
completed: 'check',
|
||||||
failed: 'alert-triangle'
|
failed: 'alert-triangle'
|
||||||
};
|
};
|
||||||
return icons[status] || 'square';
|
return icons[status] || 'inbox';
|
||||||
}
|
}
|
||||||
|
|
||||||
function escapeHtml(text) {
|
function escapeHtml(text) {
|
||||||
|
|||||||
Reference in New Issue
Block a user