Skip to content

Commit 791fc11

Browse files
committed
fixes for 1.6.7. Add CI for it
1 parent 689daa0 commit 791fc11

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
version:
15+
- '1.6'
1516
- '1' # automatically expands to the latest stable 1.x release of Julia
1617
- 'nightly'
1718
os:

src/PlotlyLight.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,9 @@ Base.show(io::IO, ::MIME"juliavscode/html", o::Plot) = show(io, MIME"text/html"(
255255

256256
function Base.show(io::IO, M::MIME"text/html", o::Plot; setting::Settings = DEFAULT_SETTINGS, id=randstring(10))
257257
if isnothing(setting.iframe)
258-
(; data, layout, config) = o
258+
data = o.data
259+
layout = o.layout
260+
config = o.config
259261
layout = merge(setting.layout, layout)
260262
config = merge(setting.config, config)
261263
setting.fix_matrix && (data = fix_matrix.(data))

0 commit comments

Comments
 (0)