fix(ui) - tenantKey display

This commit is contained in:
Shekar Siri 2021-12-02 12:33:59 +05:30
parent 2e88642d77
commit 50f42253ce
2 changed files with 9 additions and 10 deletions

View file

@ -4,37 +4,35 @@ import { connect } from 'react-redux';
import styles from './profileSettings.css';
@connect(state => ({
key: state.getIn([ 'user', 'client', 'tenantKey' ]),
loading: state.getIn([ 'user', 'updateAccountRequest', 'loading' ]) ||
state.getIn([ 'user', 'putClientRequest', 'loading' ]),
tenantKey: state.getIn([ 'user', 'client', 'tenantKey' ]),
}))
export default class TenantKey extends React.PureComponent {
state = { copied: false }
copyHandler = () => {
const { key } = this.props;
const { tenantKey } = this.props;
this.setState({ copied: true });
copy(key);
copy(tenantKey);
setTimeout(() => {
this.setState({ copied: false });
}, 1000);
};
render() {
const { key } = this.props;
const { tenantKey } = this.props;
const { copied } = this.state;
return (
<form onSubmit={ this.handleSubmit } className={ styles.form }>
<div className={ styles.formGroup }>
<label htmlFor="key">{ 'Tenant Key' }</label>
<label htmlFor="tenantKey">{ 'Tenant Key' }</label>
<div className="ui action input">
<input
name="key"
id="key"
name="tenantKey"
id="tenantKey"
type="text"
readOnly={ true }
value={ key }
value={ tenantKey }
/>
<div
className="ui button copy-button"

View file

@ -8,6 +8,7 @@ export default Record({
loggerOptions: LoggerOptions(),
apiKey: undefined,
tenantId: undefined,
tenantKey: '',
name: undefined,
sites: List(),
optOut: true,