From 61766d3a8cff9b98de06e5644f354e74fdf46ad6 Mon Sep 17 00:00:00 2001 From: Seif Soliman Date: Mon, 23 Jun 2025 16:03:52 +0300 Subject: [PATCH] fix(commandline): skip input recall on up arrow when it's opened with specific list (@byseif21) (#6627) ### Description fix this https://github.com/monkeytypegame/monkeytype/pull/6460#issuecomment-2816486698 also not only in the theme picker but you can find it happening in the language list through the language button. --- frontend/src/ts/commandline/commandline.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/ts/commandline/commandline.ts b/frontend/src/ts/commandline/commandline.ts index 064b150e6..8ce40f9d6 100644 --- a/frontend/src/ts/commandline/commandline.ts +++ b/frontend/src/ts/commandline/commandline.ts @@ -711,6 +711,7 @@ const modal = new AnimatedModal({ ) { if ( Config.singleListCommandLine === "on" && + subgroupOverride === null && inputValue === "" && lastSingleListModeInputValue !== "" ) {