chore: placeholder text is updated (#3127)

This commit is contained in:
Palash Gupta 2023-07-13 17:48:52 +05:30 committed by GitHub
parent 7f162e5381
commit 60c0836d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,2 @@
export const PLACEHOLDER =
'Search Filter : select options from suggested values, for IN/NOT IN operators - press "Enter" after selecting options';

View File

@ -18,6 +18,7 @@ import { DataSource } from 'types/common/queryBuilder';
import { v4 as uuid } from 'uuid';
import { selectStyle } from './config';
import { PLACEHOLDER } from './constant';
import { StyledCheckOutlined, TypographyText } from './style';
import {
getOperatorValue,
@ -155,7 +156,7 @@ function QueryBuilderSearch({
filterOption={false}
autoClearSearchValue={false}
mode="multiple"
placeholder="Search Filter"
placeholder={PLACEHOLDER}
value={queryTags}
searchValue={searchValue}
disabled={isMetricsDataSource && !query.aggregateAttribute.key}