critical bug fixed + improvements

This commit is contained in:
Daniel
2023-06-25 01:24:35 +03:30
parent fa71d9ba86
commit 0ddd9079bf
13 changed files with 167 additions and 108 deletions
+3 -3
View File
@@ -16,7 +16,7 @@ type Modal =
modal: "LINK";
state: boolean;
method: "CREATE";
isOwner?: boolean;
isOwnerOrMod?: boolean;
active?: LinkIncludingShortenedCollectionAndTags;
defaultIndex?: number;
}
@@ -24,7 +24,7 @@ type Modal =
modal: "LINK";
state: boolean;
method: "UPDATE";
isOwner: boolean;
isOwnerOrMod: boolean;
active: LinkIncludingShortenedCollectionAndTags;
defaultIndex?: number;
}
@@ -40,7 +40,7 @@ type Modal =
modal: "COLLECTION";
state: boolean;
method: "CREATE";
isOwner: boolean;
isOwner?: boolean;
active?: CollectionIncludingMembersAndLinkCount;
defaultIndex?: number;
}