소스 검색

Filter tags select box on text input #14437

Johannes Schill 7 년 전
부모
커밋
6bb9415b0e
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      public/app/core/components/TagFilter/TagFilter.tsx

+ 4 - 0
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,