From 6e34d16ee79b821770dd0c5599b60b54af00a9cf Mon Sep 17 00:00:00 2001 From: HikeMap User Date: Thu, 1 Jan 2026 08:13:35 -0600 Subject: [PATCH] Fix icon selector popup appearing only after sidebar opens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added 100ms delay to ensure DOM is ready before showing icon selector - Popups already have proper z-index (3000+) above controls (1000) - Icon selector should now appear immediately on page load if no icon saved 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index ec60ae1..1fd0b2f 100644 --- a/index.html +++ b/index.html @@ -2443,8 +2443,10 @@ myColor = localStorage.getItem('userColor'); if (!myIcon || !myColor) { - // Show selector if no icon chosen yet - showIconSelector(); + // Show selector if no icon chosen yet - delay to ensure DOM is ready + setTimeout(() => { + showIconSelector(); + }, 100); } }