mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 22:06:20 +00:00
2c3b6aec05
* Switch upstream-instances to use new style of searchable * Add search action to DataCollection plus basic README * Use DataCollection for PowerSelect searching in child-selectors * Remove old style filterable search for role/policies and instances * Remove old helpers/components related to search/sort/filter
11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
export default {
|
|
DestinationName: (item, value) =>
|
|
item.DestinationName.toLowerCase().indexOf(value.toLowerCase()) !== -1,
|
|
LocalBindAddress: (item, value) =>
|
|
item.LocalBindAddress.toLowerCase().indexOf(value.toLowerCase()) !== -1,
|
|
LocalBindPort: (item, value) =>
|
|
item.LocalBindPort.toString()
|
|
.toLowerCase()
|
|
.indexOf(value.toLowerCase()) !== -1,
|
|
};
|