Skip to content

Commit

Permalink
[Discover] Place tooltip at bottom of filter button (#52720) (#52849)
Browse files Browse the repository at this point in the history
This prevents a hover conflict that makes filtering out value impossible in the last column
  • Loading branch information
kertal authored Dec 12, 2019
1 parent b2ad421 commit 65a6e8b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
tooltip-append-to-body="1"
data-test-subj="docTableCellFilter"
tooltip="{{ ::'kbn.docTable.tableRow.filterForValueButtonTooltip' | i18n: {defaultMessage: 'Filter for value'} }}"
tooltip-placement="bottom"
aria-label="{{ ::'kbn.docTable.tableRow.filterForValueButtonAriaLabel' | i18n: {defaultMessage: 'Filter for value'} }}"
></button>

<button
ng-click="inlineFilter($event, '-')"
class="fa fa-search-minus kbnDocTableRowFilterButton"
Expand All @@ -30,6 +30,7 @@
tooltip="{{ ::'kbn.docTable.tableRow.filterOutValueButtonTooltip' | i18n: {defaultMessage: 'Filter out value'} }}"
aria-label="{{ ::'kbn.docTable.tableRow.filterOutValueButtonAriaLabel' | i18n: {defaultMessage: 'Filter out value'} }}"
tooltip-append-to-body="1"
tooltip-placement="bottom"
></button>
<% } %>
</span>
Expand Down

0 comments on commit 65a6e8b

Please sign in to comment.