Skip to content

Commit

Permalink
Fix error viewer tool version
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-sgaron committed Sep 27, 2021
1 parent 484a579 commit 820bdbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/routes/admin/error_viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function ErrorDetail({ error }) {
<Typography variant="h5">{error.response.service_name}</Typography>
<Typography variant="caption">
{`${error.response.service_version}${
error.response.service_tool_version && ` (${error.response.service_tool_version})`
error.response.service_tool_version ? ` (${error.response.service_tool_version})` : ''
}`}
</Typography>
</Grid>
Expand Down

0 comments on commit 820bdbe

Please sign in to comment.