Skip to content

Commit 7cd1fc5

Browse files
committed
Fix "missing credentials"
1 parent 895ce5f commit 7cd1fc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/admin/IdentityDetails.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
<td>
3434
{{ discoveryServices[service.id].join(', ') }}
3535
</td>
36-
<td v-if="service.active && service.vp" class="whitespace-nowrap">
36+
<td v-if="service.active && service.vps && service.vps.length > 0" class="whitespace-nowrap">
3737
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="green"
3838
class="w-6 h-6 inline-block">
3939
<path stroke-linecap="round" stroke-linejoin="round"
4040
d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
4141
</svg>
4242
active
4343
</td>
44-
<td v-if="service.active && service.vps && service.vps.length > 0" class="whitespace-nowrap">
44+
<td v-if="service.active && (!service.vps || service.vps.length == 0)" class="whitespace-nowrap">
4545
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
4646
stroke="DarkOrange" class="w-6 h-6 inline-block">
4747
<path stroke-linecap="round" stroke-linejoin="round"

0 commit comments

Comments
 (0)