mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
540ab9455a
commit
58d7b05a64
1 changed files with 8 additions and 4 deletions
|
@ -55,7 +55,7 @@ export class OptInBanner extends Component {
|
|||
if (this.state.showDetails) {
|
||||
details = (
|
||||
<EuiText>
|
||||
<p>
|
||||
<p tabIndex="0">
|
||||
No information about the data you process or store will be sent. This feature
|
||||
will periodically send basic feature usage statistics. See an {(
|
||||
<EuiLink onClick={() => this.setState({ showExample: !this.state.showExample })}>
|
||||
|
@ -93,10 +93,14 @@ export class OptInBanner extends Component {
|
|||
);
|
||||
}
|
||||
|
||||
const titleNode = (
|
||||
<span tabIndex="0">{title}</span>
|
||||
);
|
||||
|
||||
return (
|
||||
<EuiCallOut iconType="questionInCircle" title={title}>
|
||||
{details}
|
||||
{flyoutDetails}
|
||||
<EuiCallOut iconType="questionInCircle" title={titleNode}>
|
||||
{ details }
|
||||
{ flyoutDetails }
|
||||
<EuiSpacer size="s" />
|
||||
<EuiFlexGroup gutterSize="s" alignItems="center">
|
||||
<EuiFlexItem grow={false}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue