From a4358a9a6a1efc2a4e1f5d47fa18677788c94c6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 26 Oct 2022 14:35:13 +0200 Subject: [PATCH] Show message when reloading all the 3rd party modules Fix #516 --- website/web/templates/tree.html | 1 + 1 file changed, 1 insertion(+) diff --git a/website/web/templates/tree.html b/website/web/templates/tree.html index 68c46ba..edcbefc 100644 --- a/website/web/templates/tree.html +++ b/website/web/templates/tree.html @@ -53,6 +53,7 @@ modal.find('.modal-body').load(button.data("remote")); }); $('.modulesForceRefresh').on('click',function(){ + $('#modulesModal .modal-body').text("Reloading modules, please wait...") $('#modulesModal .modal-body').load("{{ url_for('trigger_modules', tree_uuid=tree_uuid, force=True) }}", function(){ $('#modulesModal').modal({show:true}); });