Fixed issue with wrong icon for containers that never started

This commit is contained in:
b0wter 2023-05-12 08:57:05 +02:00
parent f02bce0fdc
commit f190f1370f
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ end
local status_to_icon_name = {
Up = ICONS_DIR .. 'play.svg',
Created = ICONS_DIR .. 'play.svg',
Created = ICONS_DIR .. 'square.svg',
Exited = ICONS_DIR .. 'square.svg',
Paused = ICONS_DIR .. 'pause.svg'
}