mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* chore: issue activity store * chore: updated issue activity store and handled workspace settings order * chore: added paramenter on the issue worklog component * chore: hanlded popover close from prop
15 lines
343 B
TypeScript
15 lines
343 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
import { TIssueActivityComment } from "@plane/types";
|
|
|
|
type TIssueActivityWorklog = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
activityComment: TIssueActivityComment;
|
|
ends?: "top" | "bottom";
|
|
};
|
|
|
|
export const IssueActivityWorklog: FC<TIssueActivityWorklog> = () => <></>;
|