[WEB-2025] chore: profile page enhancements (#5209)
* chore: user layout and header updated * chore: user page sidebar improvement * fix: your work redirection * fix: profile section mobile navigation dropdown * chore: profile layout improvement * chore: profile header improvement * fix: profile section header improvement * fix: app sidebar your work active indicator * chore: profile sidebar improvement * chore: user menu code refactor * chore: header code refactor * chore: user menu code refactor * fix: build error
This commit is contained in:
parent
58f203dd38
commit
4d978c1a8c
8 changed files with 117 additions and 78 deletions
10
packages/types/src/issues/issue.d.ts
vendored
10
packages/types/src/issues/issue.d.ts
vendored
|
|
@ -1,7 +1,7 @@
|
|||
import {TIssuePriorities} from "../issues";
|
||||
import {TIssueAttachment} from "./issue_attachment";
|
||||
import {TIssueLink} from "./issue_link";
|
||||
import {TIssueReaction} from "./issue_reaction";
|
||||
import { TIssuePriorities } from "../issues";
|
||||
import { TIssueAttachment } from "./issue_attachment";
|
||||
import { TIssueLink } from "./issue_link";
|
||||
import { TIssueReaction } from "./issue_reaction";
|
||||
|
||||
// new issue structure types
|
||||
|
||||
|
|
@ -42,7 +42,7 @@ export type TBaseIssue = {
|
|||
export type TIssue = TBaseIssue & {
|
||||
description_html?: string;
|
||||
is_subscribed?: boolean;
|
||||
parent?: Partial<TIssue>;
|
||||
parent?: partial<TIssue>;
|
||||
issue_reactions?: TIssueReaction[];
|
||||
issue_attachment?: TIssueAttachment[];
|
||||
issue_link?: TIssueLink[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue