Skip to content

Commit

Permalink
Fix "missing credentials"
Browse files Browse the repository at this point in the history
  • Loading branch information
reinkrul committed Sep 20, 2024
1 parent 895ce5f commit 7cd1fc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/admin/IdentityDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
<td>
{{ discoveryServices[service.id].join(', ') }}
</td>
<td v-if="service.active && service.vp" class="whitespace-nowrap">
<td v-if="service.active && service.vps && service.vps.length > 0" class="whitespace-nowrap">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="green"
class="w-6 h-6 inline-block">
<path stroke-linecap="round" stroke-linejoin="round"
d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
</svg>
active
</td>
<td v-if="service.active && service.vps && service.vps.length > 0" class="whitespace-nowrap">
<td v-if="service.active && (!service.vps || service.vps.length == 0)" class="whitespace-nowrap">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="DarkOrange" class="w-6 h-6 inline-block">
<path stroke-linecap="round" stroke-linejoin="round"
Expand Down

0 comments on commit 7cd1fc5

Please # to comment.