UserDetailsDialog show pubkey in a nice format

pull/725/head
Audric Ackermann 5 years ago
parent bfe7d63ee0
commit 956349a964

@ -1078,8 +1078,8 @@ label {
}
}
.user-details-dialog {
.message {
user-select: all;
.session-id-editable {
width: 30vh;
}
}

@ -7,6 +7,7 @@ import {
SessionButtonColor,
SessionButtonType,
} from './session/SessionButton';
import { SessionIdEditable } from './session/SessionIdEditable';
interface Props {
i18n: any;
@ -41,7 +42,7 @@ export class UserDetailsDialog extends React.Component<Props> {
<div className="avatar-center">
<div className="avatar-center-inner">{this.renderAvatar()}</div>
</div>
<div className="message">{this.props.pubkey}</div>
<SessionIdEditable editable={false} text={this.props.pubkey} />
<div className="session-modal__button-group__center">
{!isRss && (

@ -1,7 +1,7 @@
import React from 'react';
interface Props {
placeholder: string;
placeholder?: string;
text?: string;
editable?: boolean;
onChange?: any;

Loading…
Cancel
Save