Skip to content

Commit

Permalink
Improved: code syntax and spacing for better readability (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Dec 11, 2023
1 parent 32b7ec6 commit a926518
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/views/FacilityDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@
<ion-label>
<p>{{ translate(day.charAt(0).toUpperCase() + day.slice(1)) }}</p>
</ion-label>
<ion-label slot="end"><p>{{ facilityCalendar[day+'StartTime'] ? getOpenEndTime(facilityCalendar[day+'StartTime'], facilityCalendar[day+'Capacity']) : translate('Closed') }}</p></ion-label>
<ion-label slot="end">
<p>{{ facilityCalendar[day+'StartTime'] ? getOpenEndTime(facilityCalendar[day+'StartTime'], facilityCalendar[day+'Capacity']) : translate('Closed') }}</p>
</ion-label>
</ion-item>
</ion-list>
</ion-card>
Expand Down Expand Up @@ -572,7 +574,7 @@ export default defineComponent({
componentProps: { facilityId: this.facilityId }
})
addressModal.present()
addressModal.present()
},
async addCustomSchedule() {
const customScheduleModal = await modalController.create({
Expand Down

0 comments on commit a926518

Please sign in to comment.