Skip to content

Commit

Permalink
Merge pull request #326 from jeznorth/PRC-974
Browse files Browse the repository at this point in the history
[PRC-974] Fixed Named Anchor Issue
  • Loading branch information
severinbeauvais authored Jan 15, 2019
2 parents 0dd0d00 + 9dc0b05 commit c8f5a82
Showing 1 changed file with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="top-container" *ngIf="application">
<div class="top-container">
<div class="container">
<div class="title-container">
<div class="title-container__title">
Expand Down Expand Up @@ -31,7 +31,7 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r
</div>
</div>

<div class="bottom-container" *ngIf="application">
<div class="bottom-container">
<div class="container">
<form class="mb-3" #applicationForm="ngForm">
<fieldset>
Expand Down Expand Up @@ -76,17 +76,6 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r
</div>
</div>
</div>
<!-- Need decision from PO -->
<!--
<div class="form-group">
<label>Description (Optional)</label>
<textarea class="form-control" rows="3"></textarea>
</div>
<div class="form-group mb-0">
<label>Internal Notes (Optional)</label>
<textarea class="form-control" rows="3"></textarea>
</div>
-->
</fieldset>

<fieldset>
Expand Down Expand Up @@ -129,7 +118,7 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r

<fieldset name="decisionForm" id="appDecision">
<legend class="mb-3">Application Decision</legend>
<div class="mb-4" *ngIf="application.decision">
<div class="mb-4" *ngIf="application?.decision">
<div class="form-group">
<label>Description</label>
<textarea class="form-control" rows="3" name="decisionDesc" id="decisionDesc" required aria-required="true" #decisionDesc="ngModel"
Expand Down Expand Up @@ -170,7 +159,7 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r
Add Decision
</button>
<button class="btn content-btn-alt danger" type="button" title="Remove this decision"
*ngIf="application.decision"
*ngIf="application?.decision"
(click)="deleteDecision()">
<i class="material-icons md-20">remove</i>
Remove Decision
Expand Down

0 comments on commit c8f5a82

Please sign in to comment.