From bbb7bf797f40cabbb3098e8a8160cae073a2546c Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 6 Dec 2025 02:15:28 +0400 Subject: [PATCH] fix: ensure storage summary updates after pre-filling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Call updateSummary() along with updateStorageSummary() - Add logging to track when summary updates - Ensure both storage panel and spec section are updated This should fix the 'None selected' issue by properly updating the storage display after pre-filling the drives. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../dedicatednodes-bare-metal/new-baremetal.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documents/Vibe Coding Projects/dedicatednodes-redesign/dedicatednodes-bare-metal/new-baremetal.html b/Documents/Vibe Coding Projects/dedicatednodes-redesign/dedicatednodes-bare-metal/new-baremetal.html index 46216cd..0c765c8 100644 --- a/Documents/Vibe Coding Projects/dedicatednodes-redesign/dedicatednodes-bare-metal/new-baremetal.html +++ b/Documents/Vibe Coding Projects/dedicatednodes-redesign/dedicatednodes-bare-metal/new-baremetal.html @@ -4956,9 +4956,11 @@ var wpcf7 = { updatePooledVisuals(poolKey, isInstant); - // For instant customization, update the storage summary + // For instant customization, ensure storage summary is updated if (isInstant) { + console.log("Updating storage summary for instant customization..."); updateStorageSummary(); + updateSummary(); // Also call the main updateSummary } }, 100);