Skip to content

Commit

Permalink
Merge pull request #207 from OHSUCMP/feature/issue206
Browse files Browse the repository at this point in the history
#206 - fix to prevent NPE when omronAuthRequestUrl is null
  • Loading branch information
mattStorer authored May 16, 2024
2 parents 62096e6 + ee1dc7e commit 81a94c8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/resources/templates/home.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
<div id="sessionEstablished" class="hidden">{{sessionEstablished}}</div>
<div id="randomizationGroup" class="hidden">{{randomizationGroup}}</div>
<div id="LOESSBandwidth" class="hidden">{{loessBandwidth}}</div>
<div id="omronAuthRequestUrl" class="hidden">{{omronAuthRequestUrl}}</div>

{{#omronAuthRequestUrl}}
<div id="omronAuthRequestUrl" class="hidden">{{omronAuthRequestUrl}}</div>
{{/omronAuthRequestUrl}}
<div class="container">
{{#systemStatusMessage}}
<div class="row align-items-center alert alert-teal" role="alert">
Expand Down

0 comments on commit 81a94c8

Please sign in to comment.