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 6ff4513 commit f0eae86Copy full SHA for f0eae86
lib/components/result-view/plotly.tsx
@@ -9,7 +9,7 @@
9
* @NOTE: This `PlotlyTransform` component could be used exactly same as the original `PlotlyTransform` component of @nteract/transform-plotly,
10
* except that this file adds the ability to download a plot from an electron context.
11
*/
12
-import { cloneDeep } from "lodash";
+import cloneDeep from "lodash/cloneDeep";
13
import * as React from "react";
14
interface Props {
15
data: string | Record<string, any>;
lib/kernel.ts
@@ -1,6 +1,6 @@
1
import { Emitter, TextEditor, Grammar } from "atom";
2
import { observable, action, computed } from "mobx";
3
-import { isEqual } from "lodash";
+import isEqual from "lodash/isEqual";
4
import {
5
log,
6
focus,
0 commit comments