mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 13:55:21 +02:00
fix(container) - correct since date for created containers (#822)
This commit is contained in:
parent
87250d13d7
commit
5a07638f4d
3 changed files with 13 additions and 3 deletions
|
@ -109,6 +109,9 @@ angular.module('portainer.filters', [])
|
|||
if (state.Running) {
|
||||
return 'Running';
|
||||
}
|
||||
if (state.Status === 'created') {
|
||||
return 'Created';
|
||||
}
|
||||
return 'Stopped';
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue