fix(ui): enable token overlay headers to wrap (#17661)
parent
f9941311b7
commit
ce69045708
|
@ -38,7 +38,11 @@ export default class ViewTokenOverlay extends PureComponent<Props> {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Overlay.Container>
|
<Overlay.Container>
|
||||||
<Overlay.Header title={description} onDismiss={this.handleDismiss} />
|
<Overlay.Header
|
||||||
|
title={description}
|
||||||
|
onDismiss={this.handleDismiss}
|
||||||
|
wrapText={true}
|
||||||
|
/>
|
||||||
<Overlay.Body>
|
<Overlay.Body>
|
||||||
<CodeSnippet
|
<CodeSnippet
|
||||||
copyText={this.props.auth.token}
|
copyText={this.props.auth.token}
|
||||||
|
|
Loading…
Reference in New Issue