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:
parent
93d03f82b4
commit
f30b16e9d8
2 changed files with 4 additions and 2 deletions
|
|
@ -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={{}}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue