mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* chore: update issue identifier component. * fix: browser tab closed on closing emoji picker issue fixed. * chore: revert back changes in logo props. * chore: update sortable. * chore: minor componenets restructuring. * minor ui update. * fix: issue identifier display in command palette search. * style: issue activity icons consistency.
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import { FC } from "react";
|
|
|
|
type TIssueAdditionalPropertiesActivity = {
|
|
activityId: string;
|
|
ends: "top" | "bottom" | undefined;
|
|
};
|
|
|
|
export const IssueAdditionalPropertiesActivity: FC<TIssueAdditionalPropertiesActivity> = () => <></>;
|