Skip to content

Commit 5171305

Browse files
Merge pull request #737 from bcgsc/merge-master-to-dev-7.3.0
update develop from master-7.3.0
2 parents 994a82c + 4872b9e commit 5171305

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

app/views/ReportView/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ const ReportView = (): JSX.Element => {
170170
<div className="report__content-container">
171171
{Boolean(report) && (
172172
<ReportToolbar
173-
diagnosis={report.patientInformation.diagnosis}
174-
patientId={report.patientId}
175-
type={report.template.name}
176-
state={report.state}
173+
diagnosis={report?.patientInformation?.diagnosis}
174+
patientId={report?.patientId}
175+
type={report?.template.name}
176+
state={report?.state}
177177
isSidebarVisible={isSidebarVisible}
178178
onSidebarToggle={setIsSidebarVisible}
179179
/>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "ipr-client",
4-
"version": "7.2.0",
4+
"version": "7.3.0",
55
"keywords": [],
66
"license": "GPL-3.0",
77
"sideEffects": false,

0 commit comments

Comments
 (0)