Skip to content

Commit

Permalink
fix(report component): fix pdf bug
Browse files Browse the repository at this point in the history
fix cut off pdf bug

fix #630
  • Loading branch information
waterweasel4 committed Feb 23, 2021
1 parent d9e57a9 commit 32f49cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/report/report.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ <h4 class="text-center">Application Security Team</h4>
</div>
<div class="col-4">
<h4 class="text-center">Overall Risk Severity</h4>
<p-chart [responsive]="false" [height]="415" [width]="415" type="pie" [data]="pieData"></p-chart>
<p-chart [responsive]="false" [height]="415" [width]="330" type="pie" [data]="pieData"></p-chart>
</div>
<div class="col-4">
<h4 class="text-center">Status</h4>
<p-chart [responsive]="false" [height]="475" [width]="475" type="radar" [data]="radarData"></p-chart>
<p-chart [responsive]="false" [height]="475" [width]="330" type="radar" [data]="radarData"></p-chart>
</div>
</div>
<br />
Expand Down

0 comments on commit 32f49cf

Please sign in to comment.