about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-11-03 18:32:19 +0300
committerBonfaceKilz2023-11-27 12:32:27 +0300
commit67886f1395ea6ce193e5a55dd557cf85eecb6cf6 (patch)
tree67e9a0358a8f335246486bcb8d9095019722fff7
parent6ec2fbdbec4b6152014151a9a2af15a5be7e11e1 (diff)
downloadgenenetwork2-67886f1395ea6ce193e5a55dd557cf85eecb6cf6.tar.gz
Remove javascript integrity check for HTMX.
Firefox will always give the following error:

    None of the “sha384” hashes in the integrity attribute match the content of the subresource.

Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r--wqflask/wqflask/templates/dataset.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/dataset.html b/wqflask/wqflask/templates/dataset.html
index dc87ac15..9fec96b7 100644
--- a/wqflask/wqflask/templates/dataset.html
+++ b/wqflask/wqflask/templates/dataset.html
@@ -99,7 +99,5 @@
 {% block js %}
 <script language="javascript"
         type="text/javascript"
-	src="{{ url_for('js', filename='htmx.min.js') }}"
-		  integrity="sha384-0+7g9BudUk9DgXmamowaKrIUbGxY2XGM2qH3qQe+YB/nzsgA6SdFPTQ6HBKtSyHq"
-		  crossorigin="anonymous"></script>
+		  src="{{ url_for('js', filename='htmx.min.js') }}"></script>
 {% endblock %}