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

fix(home): display tags properly EE-2153
pull/6317/head
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
1 changed files with 1 additions and 2 deletions

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);
}