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 e652f84 + 597b0bc commit b9f4063Copy full SHA for b9f4063
directus.js
@@ -27,7 +27,9 @@ export async function fetchMicrograph(id) {
27
}
28
29
export async function fetchAllMaXrf() {
30
- const response = await fetch(apiBase + "items/ma_xrf_scans");
+ const url = apiBase + "items/ma_xrf_scans?limit=-1";
31
+ console.log("fetchAllMaXrf", url);
32
+ const response = await fetch(url);
33
return (await response.json()).data;
34
35
0 commit comments