mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-30 21:05:12 +08:00
fix(ui): could not show certificates or private keys in WorkflowRunDetail
This commit is contained in:
parent
ba3eca162d
commit
2df3ab70f5
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user