We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3703aad + bbe0d36 commit dd51c62Copy full SHA for dd51c62
src/components/hooks/useTektonResults.ts
@@ -57,7 +57,9 @@ const useTRRuns = <Kind extends K8sResourceCommon>(
57
isDevConsoleProxyAvailable,
58
);
59
if (!disposed) {
60
- const token = tkPipelineRuns[1].nextPageToken;
+ const token =
61
+ tkPipelineRuns[1].nextPageToken ||
62
+ tkPipelineRuns[1].next_page_token;
63
const callInflight = !!tkPipelineRuns?.[2];
64
const loaded = !callInflight;
65
if (!callInflight) {
src/types/resultsSummary.ts
@@ -37,6 +37,7 @@ export type Log = {
37
38
export type RecordsList = {
39
nextPageToken?: string;
40
+ next_page_token?: string;
41
records: ResultRecord[];
42
};
43
0 commit comments