mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
parent
354973e98f
commit
06d3b05e58
1 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n/react';
|
||||
import React from 'react';
|
||||
import React, { Fragment } from 'react';
|
||||
import { EuiText, EuiButton } from '@elastic/eui';
|
||||
import chrome from 'ui/chrome';
|
||||
import { VisTypeAliasListEntry } from './type_selection';
|
||||
|
@ -37,7 +37,7 @@ export function NewVisHelp(props: Props) {
|
|||
/>
|
||||
</p>
|
||||
{props.promotedTypes.map(t => (
|
||||
<>
|
||||
<Fragment key={t.name}>
|
||||
<p>
|
||||
<strong>{t.promotion!.description}</strong>
|
||||
</p>
|
||||
|
@ -50,7 +50,7 @@ export function NewVisHelp(props: Props) {
|
|||
>
|
||||
{t.promotion!.buttonText}
|
||||
</EuiButton>
|
||||
</>
|
||||
</Fragment>
|
||||
))}
|
||||
</EuiText>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue