[WEB-1182] style: fix inbox state filter title. (#4399)

This commit is contained in:
Prateek Shourya 2024-05-08 13:41:58 +05:30 committed by GitHub
parent 1cbbddb1be
commit 760063ec75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ export const InboxIssueAppliedFiltersState: FC = observer(() => {
if (filteredValues.length === 0) return <></>; if (filteredValues.length === 0) return <></>;
return ( return (
<div className="relative flex flex-wrap items-center gap-2 rounded-md border border-custom-border-200 px-2 py-1"> <div className="relative flex flex-wrap items-center gap-2 rounded-md border border-custom-border-200 px-2 py-1">
<div className="text-xs text-custom-text-200">Status</div> <div className="text-xs text-custom-text-200">State</div>
{filteredValues.map((value) => { {filteredValues.map((value) => {
const optionDetail = currentOptionDetail(value); const optionDetail = currentOptionDetail(value);
if (!optionDetail) return <></>; if (!optionDetail) return <></>;