fix(containers): multiple clics on image commit (#3013)

pull/3022/head
xAt0mZ 2019-07-22 12:58:22 +02:00 committed by GitHub
commit 64d382f612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -151,15 +151,15 @@ function ($q, $scope, $state, $transition$, $filter, Commit, ContainerHelper, Co
$scope.commit = function () {
var image = $scope.config.Image;
$scope.config.Image = '';
var registry = $scope.config.Registry;
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);
$scope.config.Image = '';
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');
});
};