Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HidyHan committed Apr 23, 2024
1 parent 02089c1 commit f5e20fb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ class BundleDetailSideBar extends React.Component {
console.log(bundleInfo);
const bundle = formatBundle(bundleInfo);
console.log(bundle);
const bundleStore = bundle.bundleStore.value;
const bundleStore = bundle.bundleStore?.value;
console.log(bundleStore);
console.log(bundleInfo.bundleStore);
const bundleType = bundle.bundle_type.value;
const uuid = bundle.uuid.value;
const state = bundle.state.value;
Expand Down

0 comments on commit f5e20fb

Please sign in to comment.