Skip to content

Commit

Permalink
fix(vue): Fix display of lower number of extraction disclaimer: Start…
Browse files Browse the repository at this point in the history
… count from 1 instead of 0.
  • Loading branch information
Nico-AP committed Jul 18, 2024
1 parent a4810c1 commit 88e9295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/UploaderApp/src/components/FileUploader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
</div>

<p class="pb-3">
{{ $t('extraction-disclaimer', { lower: blueprintData[bp.id.toString()].fb_pos_lower, upper: blueprintData[bp.id.toString()].fb_pos_upper, total: blueprintData[bp.id.toString()].extracted_data.length }) }}
{{ $t('extraction-disclaimer', { lower: blueprintData[bp.id.toString()].fb_pos_lower + 1, upper: blueprintData[bp.id.toString()].fb_pos_upper, total: blueprintData[bp.id.toString()].extracted_data.length }) }}
</p>
</div>
<div :id="'expansion-control-'+bp.id.toString()" class="ul-data-expansion-control control-condensed"><a class="text-decoration-none fw-bold" :id="'collapse-toggle-'+bp.id.toString()" v-on:click="showHideData(bp.id.toString())"><span :id="'donation-container-'+ bp.id.toString() + '-toggle-label'">{{ $t('show-extracted-data') }}</span></a></div>
Expand Down

0 comments on commit 88e9295

Please sign in to comment.