Sort non managed stack to the end

This commit is contained in:
Louis Lam 2023-12-03 21:19:53 +08:00
parent 027d9e9b59
commit 79552b90a3
1 changed files with 8 additions and 0 deletions

View File

@ -152,6 +152,14 @@ export default {
});
result.sort((m1, m2) => {
// sort by managed by dockge
if (m1.isManagedByDockge && !m2.isManagedByDockge) {
return -1;
} else if (!m1.isManagedByDockge && m2.isManagedByDockge) {
return 1;
}
if (m1.status !== m2.status) {
if (m2.status === RUNNING) {
return 1;