mirror of
https://github.com/certimate-go/certimate.git
synced 2026-09-01 15:39:35 +08:00
fix(ui): could not show certificates or private keys in WorkflowRunDetail
This commit is contained in:
@@ -65,7 +65,7 @@ export const listByWorkflowRunId = async (workflowRunId: string) => {
|
||||
|
||||
const list = await pb.collection(COLLECTION_NAME_CERTIFICATE).getFullList<CertificateModel>({
|
||||
batch: 65535,
|
||||
fields: [..._commonFields, ..._expandFields].join(","),
|
||||
fields: [..._commonFields, ..._expandFields, "certificate", "privateKey"].join(","),
|
||||
filter: pb.filter("workflowRunRef={:workflowRunId}", { workflowRunId }),
|
||||
sort: "created",
|
||||
requestKey: null,
|
||||
|
||||
Reference in New Issue
Block a user