mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
parent
81340a7fff
commit
28667359c8
1 changed files with 3 additions and 2 deletions
|
@ -32,7 +32,7 @@ export const getIndexStatusByIndexName = (state, indexName) => {
|
|||
const { status } = indices[indexName] || {};
|
||||
return status;
|
||||
};
|
||||
const defaultFilterFields = ['name', 'uuid'];
|
||||
const defaultFilterFields = ['name'];
|
||||
|
||||
const filterByToggles = (indices, toggleNameToVisibleMap) => {
|
||||
const togglesByName = getToggleExtensions().reduce((byName, toggle) => ({
|
||||
|
@ -68,7 +68,8 @@ const getFilteredIndices = createSelector(
|
|||
? indexArray
|
||||
: indexArray.filter(index => !(index.name + '').startsWith('.'));
|
||||
const filter = tableState.filter || EuiSearchBar.Query.MATCH_ALL;
|
||||
return EuiSearchBar.Query.execute(filter, systemFilteredIndexes, defaultFilterFields);
|
||||
return EuiSearchBar.Query.execute(filter, systemFilteredIndexes,
|
||||
{ defaultFields: defaultFilterFields });
|
||||
}
|
||||
);
|
||||
export const getTotalItems = createSelector(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue