Skip to content

Commit b45aa3b

Browse files
author
hywax
committed
fix: hide gray status icon on status false
1 parent 28ee84d commit b45aa3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/service/base/Index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<slot name="title" :service="data">
1414
{{ title }}
1515
</slot>
16-
<slot v-if="status" name="status" :data="data">
16+
<slot v-if="status && status.enabled" name="status" :data="data">
1717
<ServiceBaseStatus :ping="data?.ping" />
1818
</slot>
1919
</h3>

0 commit comments

Comments
 (0)