Skip to content

Commit

Permalink
refactor: update <b> to <strong>
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Wang <[email protected]>
  • Loading branch information
wanglam committed Aug 3, 2023
1 parent 26539ea commit a2eef3e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions public/components/monitoring/model_deployment_table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ export const ModelDeploymentTable = ({
return (
<EuiHealth className="ml-modelStatusCell" color="danger">
<div className="eui-textTruncate">
<b>Not responding</b> on {planningNodesCount} of {planningNodesCount} nodes
<strong>Not responding</strong> on {planningNodesCount} of {planningNodesCount}{' '}
nodes
</div>
</EuiHealth>
);
Expand All @@ -107,15 +108,16 @@ export const ModelDeploymentTable = ({
return (
<EuiHealth className="ml-modelStatusCell" color="success">
<div className="eui-textTruncate">
<b>Responding</b> on {planningNodesCount} of {planningNodesCount} nodes
<strong>Responding</strong> on {planningNodesCount} of {planningNodesCount} nodes
</div>
</EuiHealth>
);
}
return (
<EuiHealth className="ml-modelStatusCell" color="warning">
<div className="eui-textTruncate">
<b>Partially responding</b> on {respondingNodesCount} of {planningNodesCount} nodes
<strong>Partially responding</strong> on {respondingNodesCount} of{' '}
{planningNodesCount} nodes
</div>
</EuiHealth>
);
Expand Down

0 comments on commit a2eef3e

Please sign in to comment.