refactor(container): reword notification messages

pull/3013/head
xAt0mZ 2019-07-18 17:19:00 +02:00
parent a856053338
commit f71a565acc
1 changed files with 2 additions and 2 deletions

View File

@ -156,10 +156,10 @@ function ($q, $scope, $state, $transition$, $filter, Commit, ContainerHelper, Co
var imageConfig = ImageHelper.createImageConfigForCommit(image, registry.URL);
Commit.commitContainer({id: $transition$.params().id, tag: imageConfig.tag, repo: imageConfig.repo}, function () {
update();
Notifications.success('Container commited', $transition$.params().id);
Notifications.success('Image created', $transition$.params().id);
}, function (e) {
update();
Notifications.error('Failure', e, 'Unable to commit container');
Notifications.error('Failure', e, 'Unable to create image');
});
};