Skip to content

Commit 9f16688

Browse files
authored
Bump iongraph-web dependency (#5921)
2 parents 66e023a + 96eaf5b commit 9f16688

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"escape-string-regexp": "^4.0.0",
8484
"gecko-profiler-demangle": "^0.4.0",
8585
"idb": "^8.0.3",
86-
"iongraph-web": "0.1.16",
86+
"iongraph-web": "0.2.0",
8787
"jszip": "^3.10.1",
8888
"long": "^5.3.2",
8989
"memoize-immutable": "^3.0.0",

src/components/shared/IonGraphView.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44
import type { LineTimings } from 'firefox-profiler/types';
55

6-
import { GraphViewer, migrate } from 'iongraph-web/react';
6+
import { GraphViewerReact, migrate } from 'iongraph-web/react';
77
import 'iongraph-web/style.css';
88

99
import { useMemo } from 'react';
@@ -25,6 +25,9 @@ export function IonGraphView(props: IonGraphViewProps) {
2525
return <div />;
2626
}
2727
return (
28-
<GraphViewer func={ionJSON.functions[0]} sampleCounts={props.timings} />
28+
<GraphViewerReact
29+
func={ionJSON.functions[0]}
30+
sampleCounts={props.timings}
31+
/>
2932
);
3033
}

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5942,10 +5942,10 @@ internal-slot@^1.1.0:
59425942
hasown "^2.0.2"
59435943
side-channel "^1.1.0"
59445944

5945-
iongraph-web@0.1.16:
5946-
version "0.1.16"
5947-
resolved "https://registry.yarnpkg.com/iongraph-web/-/iongraph-web-0.1.16.tgz#c6bc3b4497212c2dcca5d487250498179159efba"
5948-
integrity sha512-nGKsH4igN2ixiHaxpYuz62SVorRWMi/4aYc1at7uQJxgfqyEWyvBpOI2vo8oHmeEfS+0u3J4OEy5dfknqmWkWg==
5945+
iongraph-web@0.2.0:
5946+
version "0.2.0"
5947+
resolved "https://registry.yarnpkg.com/iongraph-web/-/iongraph-web-0.2.0.tgz#d666b09404001c57a473544454c38b65d827e93d"
5948+
integrity sha512-PXXv/vNoEt4ylNuPJTZrnDGonChbr2nwrjgg6yJhKtOUhbqxoThacBz/vLG7ockZLK3AUZFS0PvkdGBzS8PcsA==
59495949

59505950
is-alphabetical@^2.0.0:
59515951
version "2.0.0"

0 commit comments

Comments
 (0)