feat(ui): enhance workflow logs display
This commit is contained in:
@@ -39,7 +39,7 @@ export const listByWorkflowRunId = async (workflowRunId: string) => {
|
||||
const list = await pb.collection(COLLECTION_NAME_CERTIFICATE).getFullList<CertificateModel>({
|
||||
batch: 65535,
|
||||
filter: pb.filter("workflowRunId={:workflowRunId}", { workflowRunId: workflowRunId }),
|
||||
// sort: "created",
|
||||
sort: "created",
|
||||
requestKey: null,
|
||||
});
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ export const listByWorkflowRunId = async (workflowRunId: string) => {
|
||||
const list = await pb.collection(COLLECTION_NAME_WORKFLOW_LOG).getFullList<WorkflowLogModel>({
|
||||
batch: 65535,
|
||||
filter: pb.filter("runId={:runId}", { runId: workflowRunId }),
|
||||
// sort: "created",
|
||||
sort: "timestamp",
|
||||
requestKey: null,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user