aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2023-01-30 13:52:04 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2023-01-30 13:52:04 +0100
commit7b14b71de2a04c1713ef68f1451dd9e1d264be7a (patch)
tree20a17470480148e8ad52e9222832fb494218edc0
parentchg: [dependencies] Updated JavaScript dependencies. (diff)
downloadnewspipe-7b14b71de2a04c1713ef68f1451dd9e1d264be7a.tar.gz
newspipe-7b14b71de2a04c1713ef68f1451dd9e1d264be7a.tar.bz2
newspipe-7b14b71de2a04c1713ef68f1451dd9e1d264be7a.zip
chg: [templates] Replaced chart.min.js by chart.umd.js.
-rw-r--r--newspipe/templates/history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/templates/history.html b/newspipe/templates/history.html
index 0bb8aa8d..153c2f11 100644
--- a/newspipe/templates/history.html
+++ b/newspipe/templates/history.html
@@ -1,7 +1,7 @@
{% extends "layout.html" %}
{% block head %}
{{ super() }}
-<script src="{{ url_for('static', filename='npm_components/chart.js/dist/chart.min.js') }}"></script>
+<script src="{{ url_for('static', filename='npm_components/chart.js/dist/chart.umd.js') }}"></script>
<style>
.chart-container {
display: block;
bgstack15