fix: collections should be unique for workspaces (#3213)

This commit is contained in:
3720
2023-07-13 16:42:20 +08:00
committed by GitHub
parent 24a5b54b67
commit 9c5d91a1d9
11 changed files with 26 additions and 13 deletions

View File

@@ -29,6 +29,7 @@ export type Filter = {
export type Collection = {
id: string;
workspaceId: string;
name: string;
pinned?: boolean;
filterList: Filter[];