chore(ui): disable the search box on filter pattern (#11862)

This commit is contained in:
Sachin Chaurasiya 2023-06-02 16:37:21 +05:30 committed by GitHub
parent d0cffdcd66
commit 78b6a29c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,7 @@ const FilterPattern = ({
data-testid={`filter-pattern-includes-${type}`}
disabled={isDisabled}
mode="tags"
open={false}
placeholder={t('message.filter-pattern-placeholder')}
value={includePattern ?? []}
onChange={(value) => getIncludeValue(value, type)}
@ -85,6 +86,7 @@ const FilterPattern = ({
data-testid={`filter-pattern-excludes-${type}`}
disabled={isDisabled}
mode="tags"
open={false}
placeholder={t('message.filter-pattern-placeholder')}
value={excludePattern ?? []}
onChange={(value) => getExcludeValue(value, type)}