style(dashboard): Remove 'scraper-' prefix from worker IDs

Display 'worker-...' instead of 'scraper-worker-...' in admin view

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Kelly
2025-12-13 16:41:33 -07:00
parent 023cfc127f
commit 3d0ea21007

View File

@@ -1353,7 +1353,7 @@ export function WorkersDashboard() {
</span> </span>
)} )}
</p> </p>
<p className="text-xs text-gray-400 font-mono">{worker.worker_id.slice(0, 20)}...</p> <p className="text-xs text-gray-400 font-mono">{worker.worker_id.replace('scraper-', '').slice(0, 20)}...</p>
</div> </div>
</div> </div>
</td> </td>