Skip to content

Commit

Permalink
fix fit number in donut
Browse files Browse the repository at this point in the history
  • Loading branch information
stitch committed Sep 12, 2023
1 parent 2d5ec8f commit a4b4b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/reports/ReportHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
📊 <span v-if="show_application_links">#{{ reports[0].id }} - </span>{{ reports[0].urllist_name }}
</h2>
<applied-tags/>
<donut class="mr-2 d-inline-block float-left col-2" :data="{'score': reports[0].average_internet_nl_score, 'rest': 100-reports[0].average_internet_nl_score}" :axis="['score', 'rest']" :tooltip="false" :datalabels="false" :height='400' :elements="['donut']" />
<donut class="mr-2 d-inline-block float-left col-2" :data="{'score': reports[0].average_internet_nl_score, 'rest': 100-reports[0].average_internet_nl_score}" :axis="['score', 'rest']" :tooltip="false" :datalabels="false" :height='600' :elements="['donut']" />
<span>{{ $t("type_of_scan_performed") }}:
<scan-type-icon :type="reports[0].report_type" />

Expand Down

0 comments on commit a4b4b04

Please sign in to comment.