Skip to content

Commit

Permalink
add support for Kibana 8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
fbaligand committed Sep 22, 2023
1 parent 35adbe0 commit f948f6f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ cd ..
``` bash
yarn kbn bootstrap
cd plugins/enhancedTable
export NODE_OPTIONS="--openssl-legacy-provider"
yarn install
yarn compile
yarn start
Expand Down
2 changes: 1 addition & 1 deletion public/components/computed_column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ function ComputedColumnEditor({
defaultMessage="Template"
/>
 (
<a ng-href="https://handlebarsjs.com/guide/expressions.html" target="_blank">Handlebars</a>
<a href="https://handlebarsjs.com/guide/expressions.html" target="_blank">Handlebars</a>
&nbsp;syntax)
</>
}
Expand Down
18 changes: 11 additions & 7 deletions public/enhanced-table-vis.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@
justify-content: flex-end;
}

.pagination-other-pages .euiPaginationButton-isActive {
cursor: default;
text-decoration: underline;
font-weight: 700;
color: #07C;
}

.euiButtonEmpty .euiButtonEmpty__content {
padding: 0 8px;
}

.pagination-size {
display: none;
}
Expand Down Expand Up @@ -69,11 +80,4 @@
cursor: pointer;
}

.pagination-other-pages .euiPaginationButton-isActive {
cursor: default;
text-decoration: underline;
font-weight: 700;
color: #07C;
}

}
4 changes: 2 additions & 2 deletions public/paginated_table/table_cell_filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
data-test-subj="filterForCellValue"
ng-click="onFilterClick($event, false)"
class="fa fa-search-plus"
tooltip="{{ ::'visTypeTable.directives.tableCellFilter.filterForValueTooltip' | i18n: {defaultMessage: 'Filter for value'} }}"
tooltip="{{ ::'visTypeTable.directives.tableCellFilter.filterForValueTooltip' | i18n: {defaultMessage: 'Filter for'} }}"
tooltip-append-to-body="1"
></span>

<span
ng-click="onFilterClick($event, true)"
class="fa fa-search-minus"
tooltip="{{ ::'visTypeTable.directives.tableCellFilter.filterOutValueTooltip' | i18n: {defaultMessage: 'Filter out value'} }}"
tooltip="{{ ::'visTypeTable.directives.tableCellFilter.filterOutValueTooltip' | i18n: {defaultMessage: 'Filter out'} }}"
tooltip-append-to-body="1"
></span>
</span>
Expand Down

0 comments on commit f948f6f

Please sign in to comment.