From ea3522c7a2db6719736593ee4694c01e41d88fe8 Mon Sep 17 00:00:00 2001 From: Mantas Masalskis Date: Tue, 12 Nov 2019 13:54:55 +0100 Subject: [PATCH] Maintenance: Local history log consistency bugfix --- .../javascripts/app/lib/app_post/interface_handle.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/app/lib/app_post/interface_handle.coffee b/app/assets/javascripts/app/lib/app_post/interface_handle.coffee index 9cdce3739..96b25142d 100644 --- a/app/assets/javascripts/app/lib/app_post/interface_handle.coffee +++ b/app/assets/javascripts/app/lib/app_post/interface_handle.coffee @@ -84,7 +84,8 @@ class App.Content extends App.ControllerWidgetPermanent history = App.Config.get('History') if history[10] history.shift() - history.push window.location.hash + + history.push '#' + params.match.input # execute controller controller = (params) =>