From 688593311ebb2c301703942e802ca719094e995f Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 11 May 2026 09:11:13 +0200 Subject: [PATCH] history.js: Do not try to move errors to the right --- public/js/icinga/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/history.js b/public/js/icinga/history.js index 952873a0e..836bf9e1f 100644 --- a/public/js/icinga/history.js +++ b/public/js/icinga/history.js @@ -256,7 +256,7 @@ // User navigated forward this.icinga.ui.moveToLeft(); loadCol1 = false; - } else if (currentCol1Url === col2Url) { + } else if (col2Url && currentCol1Url === col2Url) { // User navigated back this.icinga.ui.moveToRight(); loadCol2 = false;