Skip to content

Commit

Permalink
chore: default not provided text (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReedSoftware authored Nov 7, 2024
1 parent 61465aa commit 270aa9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/routes/csip-records/components/decision.njk
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
text: 'Decision outcome'
},
value: {
text: decision.outcome.description
text: (decision.outcome.description if decision.outcome else 'Not provided')
}
},
{
key: {
text: 'Signed off by'
},
value: {
text: decision.signedOffByRole.description
text: (decision.signedOffByRole.description if decision.signedOffByRole else 'Not provided')
}
},
{
Expand Down

0 comments on commit 270aa9e

Please sign in to comment.