mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* chore: moved workspace settings to respective folders for ce and ee * chore: updated imports * chore: updated imports for ee * chore: resolved import error * chore: resolved import error * chore: ee imports in the issue sidebar * chore: updated file structure * chore: table UI * chore: resolved build errors * chore: added worklog on issue peekoverview
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
|
|
type TIssueWorklogProperty = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const IssueWorklogProperty: FC<TIssueWorklogProperty> = () => <></>;
|