Skip to content

Commit

Permalink
Fix react warnings (#142712)
Browse files Browse the repository at this point in the history
  • Loading branch information
dej611 authored Oct 5, 2022
1 parent da39215 commit 9394228
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/developer/plugin-list.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ as uiSettings within the code.
|{kib-repo}blob/{branch}/src/plugins/data_views/README.mdx[dataViews]
|The data views API provides a consistent method of structuring and formatting documents
and field lists across the various Kibana apps. Its typically used in conjunction with
and field lists across the various Kibana apps. It's typically used in conjunction with
<DocLink id="kibDevTutorialDataSearchAndSessions" section="high-level-search" text="SearchSource" /> for composing queries.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,15 @@ export function DimensionEditor(props: DimensionEditorProps) {
...services,
};

const helpButton = <EuiButtonIcon onClick={onHelpClick} iconType="documentation" />;
const helpButton = (
<EuiButtonIcon
onClick={onHelpClick}
iconType="documentation"
aria-label={i18n.translate('xpack.lens.indexPattern.quickFunctions.tableTitle', {
defaultMessage: 'Description of functions',
})}
/>
);

const columnsSidebar = [
{
Expand Down

0 comments on commit 9394228

Please sign in to comment.