1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 12:25:22 +02:00

fix endpoints tag display issue (#6851)

This commit is contained in:
sunportainer 2022-04-30 16:30:40 +08:00 committed by GitHub
parent 95b3fff917
commit 24c61034c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -148,7 +148,7 @@ function useEnvironmentTagNames(tagIds?: TagId[]) {
);
});
if (tags) {
if (tags && tags.length > 0) {
return tags.join(', ');
}