mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
fix: build errors
This commit is contained in:
@@ -1 +1,2 @@
|
||||
export * from "./projects";
|
||||
export * from "./project-activity";
|
||||
|
||||
25
web/ce/types/projects/project-activity.ts
Normal file
25
web/ce/types/projects/project-activity.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export interface TProjectActivity {
|
||||
id: string;
|
||||
content: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
userId: string;
|
||||
projectId: string;
|
||||
created_at: string;
|
||||
field: string;
|
||||
verb: string;
|
||||
actor_detail: {
|
||||
display_name: string;
|
||||
id: string;
|
||||
};
|
||||
workspace_detail: {
|
||||
slug: string;
|
||||
};
|
||||
project_detail: {
|
||||
name: string;
|
||||
};
|
||||
new_value: string;
|
||||
old_value: string;
|
||||
project: string;
|
||||
new_identifier?: string;
|
||||
}
|
||||
@@ -174,7 +174,7 @@ export const clearOPFS = async (force = false) => {
|
||||
return;
|
||||
}
|
||||
// ts-ignore
|
||||
for await (const entry of root.values()) {
|
||||
for await (const entry of (root as any)?.values()) {
|
||||
if (entry.kind === "directory" && entry.name.startsWith(".ahp-")) {
|
||||
// A lock with the same name as the directory protects it from
|
||||
// being deleted.
|
||||
|
||||
Reference in New Issue
Block a user