chore: issue filters refactor (#6742)
* chore: issue filters refactor * chore: update helper funciton implementation * chore: removed redundant components
This commit is contained in:
parent
1bf683e044
commit
d4991b9a48
17 changed files with 58 additions and 50 deletions
|
|
@ -1 +0,0 @@
|
|||
export * from "./values";
|
||||
|
|
@ -1 +0,0 @@
|
|||
export * from "./update";
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
import { TIssueServiceType } from "@plane/types";
|
||||
|
||||
export type TIssueAdditionalPropertyValuesUpdateProps = {
|
||||
issueId: string;
|
||||
issueTypeId: string;
|
||||
projectId: string;
|
||||
workspaceSlug: string;
|
||||
isDisabled: boolean;
|
||||
issueServiceType?: TIssueServiceType;
|
||||
};
|
||||
|
||||
export const IssueAdditionalPropertyValuesUpdate: React.FC<TIssueAdditionalPropertyValuesUpdateProps> = () => <></>;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import React, { FC } from "react";
|
||||
// plane imports
|
||||
|
||||
export type TWorkItemAdditionalSidebarProperties = {
|
||||
workItemId: string;
|
||||
workItemTypeId: string | null;
|
||||
projectId: string;
|
||||
workspaceSlug: string;
|
||||
isEditable: boolean;
|
||||
isPeekView?: boolean;
|
||||
};
|
||||
|
||||
export const WorkItemAdditionalSidebarProperties: FC<TWorkItemAdditionalSidebarProperties> = () => <></>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue