chore: user profile issue improvement (#2679)

* fix: user profile filters z-index

* chore: user profile issue state group heading fix

* fix: build error
This commit is contained in:
Anmol Singh Bhatia 2023-11-07 15:58:19 +05:30 committed by GitHub
parent 93d03f82b4
commit f30b16e9d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,8 @@ import { observer } from "mobx-react-lite";
import { HeaderGroupByCard } from "./group-by-card";
// ui
import { StateGroupIcon } from "@plane/ui";
// helpers
import { capitalizeFirstLetter } from "helpers/string.helper";
export interface IStateGroupHeader {
column_id: string;
@ -27,7 +29,7 @@ export const StateGroupHeader: FC<IStateGroupHeader> = observer((props) => {
{stateGroup && (
<HeaderGroupByCard
icon={<Icon stateGroup={stateGroup?.key} />}
title={stateGroup?.key || ""}
title={capitalizeFirstLetter(stateGroup?.key) || ""}
count={issues_count}
issuePayload={{}}
/>