From 29a818454844833cdb68ee48000e8cc760dc5f71 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 10 Jan 2019 15:30:48 +0100 Subject: [PATCH] loader.js: Remember a request's method --- public/js/icinga/loader.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/icinga/loader.js b/public/js/icinga/loader.js index aaccf683b..7a69d77a8 100644 --- a/public/js/icinga/loader.js +++ b/public/js/icinga/loader.js @@ -139,6 +139,7 @@ req.fail(this.onFailure); req.complete(this.onComplete); req.autorefresh = autorefresh; + req.method = method; req.action = action; req.addToHistory = true; req.progressTimer = progressTimer;