We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb9503b commit b079566Copy full SHA for b079566
web/src/app/containers/container-list.tsx
@@ -317,10 +317,10 @@ export function StaleStatusIcon({ status }: { status: string }) {
317
switch (status) {
318
case "no":
319
statusClassName = "text-green-600"
320
- title = "Image up-to-date"
+ title = "Image(s) up-to-date"
321
break
322
case "yes":
323
- statusClassName = "text-red-400"
+ statusClassName = "text-red-500"
324
title = "New image available"
325
326
case "error":
@@ -329,7 +329,7 @@ export function StaleStatusIcon({ status }: { status: string }) {
329
330
case "processing":
331
statusClassName = "text-amber-300"
332
- title = "Checking stale status. Please wait."
+ title = "Image staleness check pending. It might take an hour to update."
333
334
}
335
0 commit comments