From 708eca0697cde6aa9ffd9803255bf2add050c1f7 Mon Sep 17 00:00:00 2001 From: Soobin <38807427+soobin99@users.noreply.github.com> Date: Mon, 20 May 2024 04:18:35 +0900 Subject: [PATCH] Update anomalyVis.js --- static/js/anomalyVis.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/anomalyVis.js b/static/js/anomalyVis.js index 5598deb..80d27e1 100644 --- a/static/js/anomalyVis.js +++ b/static/js/anomalyVis.js @@ -21,7 +21,7 @@ function drawAnomalyVis(node) { function readRawData(node) { $.ajax({ - url: '../static/data/date/' + node + '.csv', + url: 'static/data/date/' + node + '.csv', dataType: 'text', }).done(function (data) { var rawAxis = []; @@ -51,7 +51,7 @@ function readRawData(node) { function readAnomalyData(rawAxis, rawData, node) { $.ajax({ - url: '../static/data/anomaly/col_' + node + '.csv', + url: 'static/data/anomaly/col_' + node + '.csv', dataType: 'text', }).done(function (data) { var anomalyData = [];