Skip to content

Commit 36d2876

Browse files
fix pagination
1 parent 6038154 commit 36d2876

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/sentry/sentry.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default {
172172
...requestConfig,
173173
params,
174174
};
175-
} else if (prevContext.nextPage) {
175+
} else if (String(prevContext.nextPage.results).toLowerCase() === "true") { // sentry returns this field as a string... so adding this in case they change it to a boolean
176176
// Retrieve next page of options.
177177
url = prevContext.nextPage.url;
178178
} else {

0 commit comments

Comments
 (0)