mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 09:49:40 +02:00
fixed docker image pull text on error scenario (#5656)
This commit is contained in:
parent
1f4a7b32e3
commit
f6f31b8872
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ angular.module('portainer.docker').controller('ImageController', [
|
||||||
await ImageService.pullImage(registryModel);
|
await ImageService.pullImage(registryModel);
|
||||||
Notifications.success('Image successfully pulled', repository);
|
Notifications.success('Image successfully pulled', repository);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
Notifications.error('Failure', err, 'Unable to push image to repository');
|
Notifications.error('Failure', err, 'Unable to pull image from repository');
|
||||||
} finally {
|
} finally {
|
||||||
$('#downloadResourceHint').hide();
|
$('#downloadResourceHint').hide();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue