Skip to content

Commit dfb8b37

Browse files
committed
Fix heap reporting for ClojureScript
1 parent b63cd7b commit dfb8b37

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
### Bugs fixed
1010

11+
- Fix heap reporting for ClojureScript (where heap data is currently missing)
12+
1113
## 4.5.3 (02-09-2025)
1214

1315
### New Features

src-dbg/flow_storm/debugger/ui/main.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
box))
9090

9191
(defn update-heap-indicator [{:keys [max-heap-bytes heap-size-bytes heap-free-bytes]}]
92-
(when max-heap-bytes
92+
(when (pos? max-heap-bytes)
9393
(ui-utils/run-later
9494
(let [[^ProgressBar heap-bar] (obj-lookup "heap-bar")
9595
[heap-max-lbl] (obj-lookup "heap-max-lbl")

0 commit comments

Comments
 (0)