Merge pull request #14449 from grafana/14437-tag-filter

Filter tags select box on text input #14437
pull/14453/head
Torkel Ödegaard 7 years ago committed by GitHub
commit 076a1be03a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/core/components/TagFilter/TagFilter.tsx

@ -51,6 +51,10 @@ export class TagFilter extends React.Component<Props, any> {
getOptionLabel: i => i.label,
value: tags,
styles: ResetStyles,
filterOption: (option, searchQuery) => {
const regex = RegExp(searchQuery, 'i');
return regex.test(option.value);
},
components: {
Option: TagOption,
IndicatorsContainer,

Loading…
Cancel
Save