Skip to content

Commit

Permalink
feat(dedicated.iplb): modify the status display value (#13457)
Browse files Browse the repository at this point in the history
ref: MANAGER-15560

Signed-off-by: Sachin Ramesh <[email protected]>
  • Loading branch information
sachinrameshn authored Oct 10, 2024
1 parent 302851c commit 82caa8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class IpblServerStatusService {
}

if (this.constructor.hasNoInfo(server)) {
return 'help';
return 'N/A';
}

return 'success';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ <h3 data-translate="iplb_farm_title"></h3>
data-server="$row"
tabindex="0"
role="button"
data-ng-click="ctrl.seeServerStatus($row)"
data-ng-click="$row.serverState.length !== 0 && ctrl.seeServerStatus($row)"
></iplb-server-status>
</oui-datagrid-column>
<oui-action-menu data-compact data-placement="end">
Expand Down

0 comments on commit 82caa8d

Please sign in to comment.