Skip to content

Commit

Permalink
wording feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasneirynck committed Aug 20, 2020
1 parent 38e3a54 commit 4df20b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 305 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,10 @@ export class ScalingForm extends Component<Props, State> {
const labelText = i18n.translate('xpack.maps.source.esSearch.useMVTVectorTiles', {
defaultMessage: 'Use vector tiles',
});
const label = <>{labelText}</>;
const mvtRadio = (
<EuiRadio
id={SCALING_TYPES.MVT}
label={label}
label={labelText}
checked={this.props.scalingType === SCALING_TYPES.MVT}
onChange={() => this._onScalingTypeChange(SCALING_TYPES.MVT)}
disabled={!this.props.supportsMvt}
Expand All @@ -207,8 +206,7 @@ export class ScalingForm extends Component<Props, State> {
<EuiBetaBadge label={'beta'} />
<EuiHorizontalRule margin="xs" />
{i18n.translate('xpack.maps.source.esSearch.mvtDescription', {
defaultMessage:
'Using .mvt tiles allows for faster display of large datasets. Not all layer-functionality is supported.',
defaultMessage: 'Use vector tiles for faster display of large datasets.',
})}
</>
);
Expand Down

0 comments on commit 4df20b4

Please sign in to comment.