Skip to content

Commit

Permalink
Merge pull request #8 from GalaxyPay/dev
Browse files Browse the repository at this point in the history
fix: ts error
  • Loading branch information
acfunk authored Oct 25, 2024
2 parents 6a5aa62 + 5dad1bb commit ff5c081
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions webui/src/components/Node.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@
/>
<template
v-if="
(nodeStatus.retiStatus && status === 'Running') ||
['Running', 'Stopped'].includes(
nodeStatus.retiStatus?.serviceStatus
)
nodeStatus.retiStatus &&
(status === 'Running' ||
['Running', 'Stopped'].includes(
nodeStatus.retiStatus.serviceStatus
))
"
>
<v-divider class="ml-6" />
Expand Down

0 comments on commit ff5c081

Please sign in to comment.