Skip to content
Snippets Groups Projects
Commit 068dddbf authored by jvanboxtel@wisc.edu's avatar jvanboxtel@wisc.edu
Browse files

ROENROLL-1966 fix for null memorandaSection

parent 2f96394c
No related branches found
No related tags found
No related merge requests found
......@@ -256,8 +256,8 @@
<p class="pre-wrap" [innerHTML]="audit.requirementEndnote"></p>
<br>
<p>{{ audit.bottomSection.memorandaSection.label }}</p>
<p *ngFor="let line of audit.bottomSection.memorandaSection.memorandaLines">
<p>{{ audit.bottomSection.memorandaSection?.label }}</p>
<p *ngFor="let line of audit.bottomSection.memorandaSection?.memorandaLines">
{{ line }}
</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment