From 34af94d760b67fe9592eb7055ae0c3d67b9fc325 Mon Sep 17 00:00:00 2001 From: Gnome Ann <> Date: Wed, 1 Sep 2021 14:21:07 -0400 Subject: [PATCH] Fix deselected stories in Load dialog not un-highlighting --- static/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/application.js b/static/application.js index 2f442fd2..3a0a457f 100644 --- a/static/application.js +++ b/static/application.js @@ -627,7 +627,7 @@ function buildLoadList(ar) { } function highlightLoadLine(ref) { - $("#loadlistcontent > div").removeClass("popuplistselected"); + $("#loadlistcontent > div > div.popuplistselected").removeClass("popuplistselected"); ref.addClass("popuplistselected"); }