{
+ return (
+
+
+
+ {formatMessage({id: item.schema === 'https'
+ ? "cluster.regist.step.complete.tls.yes"
+ : "cluster.regist.step.complete.tls.no"})}
+
+
+ {(item.basic_auth && typeof item.basic_auth.username !=='undefined' && item.basic_auth.username !== '')
+ ? formatMessage({id: "cluster.regist.step.complete.tls.yes"})
+ : formatMessage({id: "cluster.regist.step.complete.tls.no"})}
+
+
+ {item.description}
+
+
+
+ );
+ };
+
fetchData = (params) => {
const { dispatch } = this.props;
dispatch({
@@ -213,12 +246,6 @@ class Index extends React.Component {
payload: params,
});
};
- componentDidMount() {
- const { pageSize } = this.props.clusterConfig;
- this.fetchData({
- size: pageSize,
- });
- }
handleSearchClick = () => {
const { form } = this.props;
@@ -356,6 +383,7 @@ class Index extends React.Component {
span:first-child {
+ font-weight: 500;
+ }
+}