1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 06:49:40 +02:00

fix(image-details): fix invalid CMD with images using HEALTHCHECK (#879)

This commit is contained in:
Anthony Lapenna 2017-05-23 20:43:58 +02:00 committed by GitHub
parent d3ecf1d7a8
commit a380fd9adc
3 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ function ($scope, $stateParams, $state, ImageService, Notifications) {
});
};
$scope.pushImage = function(tag) {
$scope.pushTag = function(tag) {
$('#loadingViewSpinner').show();
ImageService.pushImage(tag)
.then(function success() {
@ -38,7 +38,7 @@ function ($scope, $stateParams, $state, ImageService, Notifications) {
});
};
$scope.pullImage = function(tag) {
$scope.pullTag = function(tag) {
$('#loadingViewSpinner').show();
ImageService.pullTag(tag)