Fix display_name TS error + clean rebuild

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 00:42:40 +00:00
parent 317672aa08
commit e250b2124f
4 changed files with 273 additions and 57 deletions

View File

@@ -356,3 +356,13 @@ main {
min-height: 28px !important;
}
}
/* Status dot pulse animation for in_progress tasks */
@keyframes statusPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.status-dot-active {
animation: statusPulse 2s ease-in-out infinite;
}