We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b571dba commit 0fe923aCopy full SHA for 0fe923a
src/client/graphics/layers/PlayerPanel.ts
@@ -220,7 +220,7 @@ export class PlayerPanel extends LitElement implements Layer {
220
}
221
222
private getExpiryColorClass(seconds: number | null): string {
223
- if (seconds === null) return "text-white";
+ if (seconds === null) return "text-white"; // Default color
224
225
if (seconds <= 30) return "text-red-400"; // Last 30 seconds: Red
226
if (seconds <= 60) return "text-yellow-400"; // Last 60 seconds: Yellow
0 commit comments