1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

fix(home): display tags properly [EE-2153] (#6275)

fix(home): display tags properly EE-2153
This commit is contained in:
andres-portainer 2021-12-22 19:39:23 -03:00 committed by GitHub
parent e7fc996424
commit cdfa9b25a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,8 +101,7 @@ angular
});
try {
const tags = TagService.tags();
$scope.tags = tags;
$scope.tags = await TagService.tags();
} catch (err) {
Notifications.error('Failed loading page data', err);
}