Skip to content

Commit b079566

Browse files
committed
Staleness messages and colour update
1 parent cb9503b commit b079566

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/app/containers/container-list.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -317,10 +317,10 @@ export function StaleStatusIcon({ status }: { status: string }) {
317317
switch (status) {
318318
case "no":
319319
statusClassName = "text-green-600"
320-
title = "Image up-to-date"
320+
title = "Image(s) up-to-date"
321321
break
322322
case "yes":
323-
statusClassName = "text-red-400"
323+
statusClassName = "text-red-500"
324324
title = "New image available"
325325
break
326326
case "error":
@@ -329,7 +329,7 @@ export function StaleStatusIcon({ status }: { status: string }) {
329329
break
330330
case "processing":
331331
statusClassName = "text-amber-300"
332-
title = "Checking stale status. Please wait."
332+
title = "Image staleness check pending. It might take an hour to update."
333333
break
334334
}
335335

0 commit comments

Comments
 (0)