Skip to content

Commit

Permalink
fix: hide gray status icon on status false
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Mar 16, 2024
1 parent 28ee84d commit b45aa3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/service/base/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<slot name="title" :service="data">
{{ title }}
</slot>
<slot v-if="status" name="status" :data="data">
<slot v-if="status && status.enabled" name="status" :data="data">
<ServiceBaseStatus :ping="data?.ping" />
</slot>
</h3>
Expand Down

0 comments on commit b45aa3b

Please sign in to comment.