Skip to content

Commit 3f59337

Browse files
committed
include original RecordHeading component
(cherry picked from commit c9d9d37)
1 parent d9f1aeb commit 3f59337

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/sites/genomics-site/webapp/wdkCustomization/js/client/components/records/GeneRecordClasses.GeneRecordClass.jsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,14 @@ export const RecordHeading = connect(
5757
requestId: state.record.requestId,
5858
}),
5959
RecordActions
60-
)(RecordOverview);
60+
)(function RecordHeadingWrapper({ DefaultComponent, ...props }) {
61+
return (
62+
<>
63+
<DefaultComponent {...props} />
64+
<RecordOverview {...props} />
65+
</>
66+
);
67+
});
6168

6269
function Shortcuts(props) {
6370
const {

0 commit comments

Comments
 (0)