chore: issue filters refactor (#6742)

* chore: issue filters refactor

* chore: update helper funciton implementation

* chore: removed redundant components
This commit is contained in:
Vamsi Krishna 2025-03-17 15:45:34 +05:30 committed by GitHub
parent 1bf683e044
commit d4991b9a48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 58 additions and 50 deletions

View file

@ -1 +0,0 @@
export * from "./values";

View file

@ -1 +0,0 @@
export * from "./update";

View file

@ -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> = () => <></>;

View file

@ -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> = () => <></>;