mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 22:05:23 +02:00
feat(services): display clearer information about services
This commit is contained in:
parent
22c02a8fe9
commit
35e2cecee1
5 changed files with 44 additions and 16 deletions
|
@ -228,4 +228,13 @@ angular.module('portainer.filters', [])
|
|||
}
|
||||
return '';
|
||||
};
|
||||
})
|
||||
.filter('hideshasum', function () {
|
||||
'use strict';
|
||||
return function (imageName) {
|
||||
if (imageName) {
|
||||
return imageName.split('@sha')[0];
|
||||
}
|
||||
return '';
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue