Skip to content

Commit

Permalink
Fix: add materialize and fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
dhmmasson committed Aug 21, 2023
1 parent a394937 commit bb40285
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docs/static/javascripts/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,10 @@
/******/
};
/******/
})(); /* webpack/runtime/compat */
})(); /* webpack/runtime/compat */ /******/
/******/

/******/ /******/

/******/ if (typeof __nccwpck_require__ !== "undefined")
/******/ /******/ if (typeof __nccwpck_require__ !== "undefined")
__nccwpck_require__.ab =
new URL(".", import.meta.url).pathname.slice(
import.meta.url.match(/^file:\/\/\/\w:/) ? 1 : 0,
Expand Down Expand Up @@ -10249,7 +10247,7 @@ function loadFromCSV(csvFile) {
* @param
*/
async function getCriteria() {
const response = await fetch("/api/criteria");
const response = await fetch("api/criteria");
const data = await response.json();
return data.criteria;
}
Expand All @@ -10261,7 +10259,7 @@ async function getCriteria() {
*/
async function getTechnologies() {
// fetch asynchrone
const response = await fetch("/api/technologies");
const response = await fetch("api/technologies");
const data = await response.json();
return data.technologies;
}
Expand Down
6 changes: 6 additions & 0 deletions docs/static/javascripts/materialize.min.js

Large diffs are not rendered by default.

0 comments on commit bb40285

Please sign in to comment.