From ee3c19c976225b63560cacb4bdb35d3de42af958 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 8 Feb 2023 23:48:59 +0000 Subject: [PATCH] Inputs folder change --- application/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/templates/index.html b/application/templates/index.html index fc91f46f..39a0688d 100644 --- a/application/templates/index.html +++ b/application/templates/index.html @@ -104,12 +104,12 @@ This will return a new DataFrame with all the columns from both tables, and only function docsIndex() { // loads latest index from https://raw.githubusercontent.com/arc53/DocsHUB/main/combined.json // and stores it in localStorage - fetch('https://raw.githubusercontent.com/arc53/DocsHUB/main/combined.json') + fetch('https://d3dg1063dc54p9.cloudfront.net/combined.json') .then(response => response.json()) .then(data => { console.log('Success:', data); localStorage.setItem("docsIndex", JSON.stringify(data)); - loacalStorage.setItem("docsIndexDate", Date.now()); + localStorage.setItem("docsIndexDate", Date.now()); generateOptions() }