fixed docker image pull text on error scenario (#5656)

pull/5675/head
zees-dev 2021-09-20 01:42:55 +12:00 committed by GitHub
parent 1f4a7b32e3
commit f6f31b8872
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ angular.module('portainer.docker').controller('ImageController', [
await ImageService.pullImage(registryModel);
Notifications.success('Image successfully pulled', repository);
} catch (err) {
Notifications.error('Failure', err, 'Unable to push image to repository');
Notifications.error('Failure', err, 'Unable to pull image from repository');
} finally {
$('#downloadResourceHint').hide();
}