You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the minified clockface is not getting compiled correctly.
Relevant minified code
Fs = n.forwardRef(function(e, n) {
var r, o = e.id, i = e.style, a = e.testID, u = void 0 === a ? "panel" : a, l = e.gradient, c = e.children, f = e.className, d = e.onDismiss, p = e.backgroundColor, h = void 0 === p ? t.InfluxColors.Castle : p, m = e.dismissButtonColor, v = void 0 === m ? t.ComponentColor.Primary : m, g = ae(h, l), y = H("cf-panel", ((r = {})["" + f] = f,
r["cf-panel__gradient"] = l,
r["cf-panel__" + g + "-text"] = g,
r)), b = d && s.createElement(he, {
onClick: d,
color: v
}), w = function(e, t, n) {
var r = {
backgroundColor: e
};
return n ? K({}, r, n) : r
}(h, 0, i);
return s.createElement("div", {
id: o,
ref: n,
style: w,
"data-testid": u,
className: y
}, b, c)
})
In the above code, variable l which is the gradient, is not getting used outside of the style. Instead 0 is getting passed in to the function and the parameter t (the gradient) is not being used at all in the function w.
The text was updated successfully, but these errors were encountered:
The current work around is adding a style:
It looks like the minified clockface is not getting compiled correctly.
Relevant minified code
In the above code, variable
l
which is the gradient, is not getting used outside of the style. Instead 0 is getting passed in to the function and the parameter t (the gradient) is not being used at all in the functionw
.The text was updated successfully, but these errors were encountered: