Skip to content

Commit 1d62dfe

Browse files
committed
bandage fix for Nan error in charimarkext
1 parent 6c1867e commit 1d62dfe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/MakieExt/chair.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ function PerfChecker.checkres_to_scatterlines(
1818
versionnums = [x.pkgs[i].version for i in eachindex(x.pkgs)]
1919

2020
f = Figure()
21+
if iszero(data)
22+
return f
23+
end
24+
2125
ax = f[1, 1] = Axis(f)
2226
colors = make_colors(length(props))
2327
max = 2

0 commit comments

Comments
 (0)