fix: ensure storage summary updates after pre-filling

- 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 <noreply@anthropic.com>
This commit is contained in:
Claude
2025-12-06 02:15:28 +04:00
Unverified
parent 9a145b9c4b
commit bbb7bf797f

View File

@@ -4956,9 +4956,11 @@ var wpcf7 = {
updatePooledVisuals(poolKey, isInstant); updatePooledVisuals(poolKey, isInstant);
// For instant customization, update the storage summary // For instant customization, ensure storage summary is updated
if (isInstant) { if (isInstant) {
console.log("Updating storage summary for instant customization...");
updateStorageSummary(); updateStorageSummary();
updateSummary(); // Also call the main updateSummary
} }
}, 100); }, 100);