1
0
Fork 0
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:
Thomas Krzero 2017-04-27 20:40:37 +02:00 committed by Anthony Lapenna
parent 87250d13d7
commit 5a07638f4d
3 changed files with 13 additions and 3 deletions

View file

@ -109,6 +109,9 @@ angular.module('portainer.filters', [])
if (state.Running) {
return 'Running';
}
if (state.Status === 'created') {
return 'Created';
}
return 'Stopped';
};
})