Skip to content

Commit

Permalink
Merge pull request #308 from severinbeauvais/hotfix
Browse files Browse the repository at this point in the history
PRC-849: changed file upload size to 10MB
  • Loading branch information
marklise authored Nov 16, 2018
2 parents ee91d37 + 65a9cbd commit dc30b43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r
</span>
</li>
</ul>
<app-file-upload [maxFiles]="0" [showInfo]="false" [showList]="false" [files]="applicationFiles"
<app-file-upload [maxFiles]="0" [maxSize]="10" [showInfo]="false" [showList]="false" [files]="applicationFiles"
(filesChange)="addDocuments($event, application.documents); applicationFiles = []"></app-file-upload>
</div>
</fieldset>
Expand Down Expand Up @@ -182,7 +182,7 @@ <h1><span class="text-muted">Crown land File: {{application['clFile']}} &nbsp;&r
</span>
</li>
</ul>
<app-file-upload [maxFiles]="0" [showInfo]="false" [showList]="false" [files]="decisionFiles"
<app-file-upload [maxFiles]="0" [maxSize]="10" [showInfo]="false" [showList]="false" [files]="decisionFiles"
(filesChange)="addDocuments($event, application.decision.documents); decisionFiles = []"></app-file-upload>
</div>
</div>
Expand Down

0 comments on commit dc30b43

Please sign in to comment.