Skip to content

Commit

Permalink
fixes for 1.6.7. Add CI for it
Browse files Browse the repository at this point in the history
  • Loading branch information
joshday committed Jul 24, 2023
1 parent 689daa0 commit 791fc11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1' # automatically expands to the latest stable 1.x release of Julia
- 'nightly'
os:
Expand Down
4 changes: 3 additions & 1 deletion src/PlotlyLight.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ Base.show(io::IO, ::MIME"juliavscode/html", o::Plot) = show(io, MIME"text/html"(

function Base.show(io::IO, M::MIME"text/html", o::Plot; setting::Settings = DEFAULT_SETTINGS, id=randstring(10))
if isnothing(setting.iframe)
(; data, layout, config) = o
data = o.data
layout = o.layout
config = o.config
layout = merge(setting.layout, layout)
config = merge(setting.config, config)
setting.fix_matrix && (data = fix_matrix.(data))
Expand Down

0 comments on commit 791fc11

Please sign in to comment.