We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63cd7b commit dfb8b37Copy full SHA for dfb8b37
CHANGELOG.md
@@ -8,6 +8,8 @@
8
9
### Bugs fixed
10
11
+ - Fix heap reporting for ClojureScript (where heap data is currently missing)
12
+
13
## 4.5.3 (02-09-2025)
14
15
### New Features
src-dbg/flow_storm/debugger/ui/main.clj
@@ -89,7 +89,7 @@
89
box))
90
91
(defn update-heap-indicator [{:keys [max-heap-bytes heap-size-bytes heap-free-bytes]}]
92
- (when max-heap-bytes
+ (when (pos? max-heap-bytes)
93
(ui-utils/run-later
94
(let [[^ProgressBar heap-bar] (obj-lookup "heap-bar")
95
[heap-max-lbl] (obj-lookup "heap-max-lbl")
0 commit comments