fix: uncapitalize filter name (#13217)

This commit is contained in:
Amit Miran 2021-02-18 20:43:52 +02:00 committed by GitHub
parent 66653ef306
commit bcaa484aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ const Indicator = ({
<ItemIcon>
<SearchOutlined />
</ItemIcon>
{name.toUpperCase()}
{name}
{value.length ? ': ' : ''}
</Title>
<FilterValue>{value.length ? value.join(', ') : ''}</FilterValue>