Skip to content

Commit

Permalink
feat(ui): filter doesn't have tooltip (argoproj/argo-cd#4257) (argopr…
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref authored Sep 25, 2020
1 parent ed554e1 commit 66de6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/top-bar/top-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export interface TopBarProps extends React.Props<any> {
const renderFilter = (filter: TopBarFilter<any>) => (
<DropDown isMenu={true}
anchor={() => (
<div className={classNames('top-bar__filter', { 'top-bar__filter--selected': filter.selectedValues.length > 0 })}>
<div className={classNames('top-bar__filter', { 'top-bar__filter--selected': filter.selectedValues.length > 0 })} title='Filter'>
<i className='argo-icon-filter' aria-hidden='true'/>
<i className='fa fa-angle-down' aria-hidden='true'/>
</div>)}>
Expand Down

0 comments on commit 66de6bf

Please sign in to comment.