Skip to content

Commit 2cf26d2

Browse files
committed
fix: tag existence check in InstancesList component
1 parent 06683ca commit 2cf26d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-admin-server-ui/src/main/frontend/views/applications/InstancesList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</div>
103103
</section>
104104
<section
105-
v-if="instance.tags?.length > 0"
105+
v-if="Object.keys(instance.tags ?? {})?.length > 0"
106106
class="mt-2 hidden lg:block overflow-x-auto"
107107
>
108108
<sba-tags :small="true" :tags="instance.tags" />

0 commit comments

Comments
 (0)