Skip to content

Commit

Permalink
fix: 修改判断健康检查是否开启时使用的字段 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
WTIFS authored Apr 27, 2024
1 parent dfa1df6 commit 11e81ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/polaris/service/detail/instance/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ export default function ServiceInstancePage(props: DuckCmpProps<ServicePageDuck>
</FormText>
</FormItem>
<FormItem label='健康检查'>
<FormText>{record.healthCheck?.type ? '开启' : '关闭'}</FormText>
<FormText>{record.enableHealthCheck ? '开启' : '关闭'}</FormText>
</FormItem>
{record.healthCheck?.type && (
{record.enableHealthCheck && (
<FormItem label='健康检查方式'>
<FormText>
检查方式:
Expand Down

0 comments on commit 11e81ad

Please sign in to comment.