Add copyable User Id field
This commit is contained in:
parent
f2c3c82d3a
commit
f7cb015390
1 changed files with 10 additions and 0 deletions
|
@ -52,6 +52,16 @@ export function ProfileModal({
|
||||||
<Modal title="Profile" isDismissable {...rest}>
|
<Modal title="Profile" isDismissable {...rest}>
|
||||||
<ModalContent>
|
<ModalContent>
|
||||||
<form onSubmit={onSubmit}>
|
<form onSubmit={onSubmit}>
|
||||||
|
<FieldRow>
|
||||||
|
<InputField
|
||||||
|
id="userId"
|
||||||
|
name="userId"
|
||||||
|
label="User Id"
|
||||||
|
type="text"
|
||||||
|
disabled
|
||||||
|
value={client.getUserId()}
|
||||||
|
/>
|
||||||
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<InputField
|
<InputField
|
||||||
id="displayName"
|
id="displayName"
|
||||||
|
|
Loading…
Reference in a new issue