We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c8d5f commit 19fa180Copy full SHA for 19fa180
ui/src/design-system/components/plot/plot.tsx
@@ -1,5 +1,5 @@
1
import classNames from 'classnames'
2
-import PlotlyPlot from 'react-plotly.js'
+import _Plot from 'react-plotly.js'
3
import styles from './plot.module.scss'
4
import { PlotProps } from './types'
5
@@ -21,7 +21,7 @@ const Plot = ({
21
<div
22
className={classNames(styles.plot, { [styles.round]: data.x.length >= 3 })}
23
>
24
- <PlotlyPlot
+ <_Plot
25
data={[
26
{
27
orientation,
0 commit comments