fix(ui): duplicate form names
This commit is contained in:
@@ -7,8 +7,9 @@ const COLLECTION_NAME = "access";
|
||||
|
||||
export const list = async () => {
|
||||
return await getPocketBase().collection(COLLECTION_NAME).getFullList<AccessModel>({
|
||||
sort: "-created",
|
||||
filter: "deleted=null",
|
||||
sort: "-created",
|
||||
requestKey: null,
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@ export const list = async (req: CertificateListReq) => {
|
||||
const options: RecordListOptions = {
|
||||
sort: "-created",
|
||||
expand: "workflow",
|
||||
requestKey: null,
|
||||
};
|
||||
|
||||
if (req.state === "expireSoon") {
|
||||
|
||||
Reference in New Issue
Block a user