1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix manage cluster proxy settings (#3048)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-06-14 11:35:04 +03:00 committed by GitHub
parent b3f8404250
commit a320516963
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 8 deletions

View File

@ -39,4 +39,8 @@
--size: 70px; --size: 70px;
margin: auto; margin: auto;
} }
}
a.interactive {
cursor: pointer
}
}

View File

@ -89,7 +89,7 @@ export class ClusterStatus extends React.Component<Props> {
params: { params: {
entityId: this.props.clusterId, entityId: this.props.clusterId,
}, },
fragment: "http-proxy", fragment: "Proxy",
})); }));
}; };
@ -132,12 +132,11 @@ export class ClusterStatus extends React.Component<Props> {
onClick={this.reconnect} onClick={this.reconnect}
waiting={this.isReconnecting} waiting={this.isReconnecting}
/> />
<Button <a
primary className="box center interactive"
label="Manage Proxy Settings" onClick={this.manageProxySettings}>
className="box center" Manage Proxy Settings
onClick={this.manageProxySettings} </a>
/>
</> </>
); );
} }