From 6c578803fb9d30f2cb979552c9909a071fcf510a Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Tue, 29 Mar 2022 17:41:54 +0200 Subject: [PATCH] Update src/backends/plotly.jl [skip ci] Co-authored-by: t-bltg --- src/backends/plotly.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 60ad7135..f3f1db44 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -1020,7 +1020,7 @@ function plotly_polar!(plotattributes_out::KW, series::Series) end function plotly_adjust_hover_label!(plotattributes_out::KW, hover) - if isnothing(hover) + if hover === nothing return nothing elseif all(in([:none, false]), hover) plotattributes_out[:hoverinfo] = "none"