mirror of
https://github.com/makeplane/plane.git
synced 2026-05-04 15:09:50 -05:00
[WEB-3856]chore: refactor work item activity (#6923)
* chore: refactor work item activity * chore: added estimate render for notifications
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import { FC } from "react";
|
||||
import { observer } from "mobx-react";
|
||||
|
||||
export type TAdditionalActivityRoot = {
|
||||
activityId: string;
|
||||
showIssue?: boolean;
|
||||
ends: "top" | "bottom" | undefined;
|
||||
field: string | undefined;
|
||||
};
|
||||
|
||||
export const AdditionalActivityRoot: FC<TAdditionalActivityRoot> = observer(() => <></>);
|
||||
@@ -4,3 +4,4 @@ export * from "./issue-type-switcher";
|
||||
export * from "./issue-type-activity";
|
||||
export * from "./parent-select-root";
|
||||
export * from "./issue-creator";
|
||||
export * from "./additional-activity-root";
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
import { TIssueActivity } from "@plane/types";
|
||||
|
||||
export const renderEstimate = (activity: TIssueActivity, value: string) => value;
|
||||
@@ -1,2 +1 @@
|
||||
export * from "./root";
|
||||
export * from "./helper";
|
||||
|
||||
Reference in New Issue
Block a user