Skip to content

Commit

Permalink
fix threshold progress view
Browse files Browse the repository at this point in the history
  • Loading branch information
dt2patel authored Mar 1, 2024
1 parent f4b2856 commit 77e1178
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/views/FindFacilities.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@
</div>

<div class="tablet">
<div class="ion-text-center" v-if="facility.orderLimitType === 'custom'">
<template class="ion-text-center" v-if="facility.orderLimitType === 'custom'">

Check failure on line 75 in src/views/FindFacilities.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (18.x)

Unexpected useless attribute on `<template>`

Check failure on line 75 in src/views/FindFacilities.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (20.x)

Unexpected useless attribute on `<template>`

Check failure on line 75 in src/views/FindFacilities.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / build_and_deploy

Unexpected useless attribute on `<template>`
<ion-chip outline @click.stop="changeOrderLimitPopover($event, facility)">
<ion-label>{{ facility.orderCount }} {{ '/' }} {{ facility.maximumOrderLimit }}</ion-label>
</ion-chip>
<ion-note>{{ translate('threshold consumed') }}</ion-note>
</div>
<ion-note class="config-label">{{ translate('threshold consumed') }}</ion-note>
</template>

<ion-chip outline v-else-if="facility.orderLimitType === 'unlimited'" @click.stop="changeOrderLimitPopover($event, facility)">
<ion-label>{{ translate("Unlimited orders") }}</ion-label>
Expand Down Expand Up @@ -381,4 +381,9 @@ export default defineComponent({
.list-item {
--columns-desktop: 4;
}
config-note {
display: block;
text-align: center;
}
</style>

0 comments on commit 77e1178

Please sign in to comment.