Skip to content

Commit

Permalink
feat(ZMS-815): add more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Manjencic committed Jan 30, 2024
1 parent 28fa6f1 commit 6bb34d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/components/TheCalendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,15 @@ export default {
console.log(this.$store.state.data)
if (this.$store.state.data.service) {
console.log('showForProvider from service')
this.showForProvider(this.$store.state.data.service.providers[0])
}
if (this.$store.state.data.appointment && this.$store.state.data.appointment.locationId) {
console.log('showForProvider from appointment')
this.showForProvider({
id: this.$store.state.data.appointment.locationId,
id: parseInt(this.$store.state.data.appointment.locationId),
name: this.$store.state.data.appointment.location
})
Expand Down

0 comments on commit 6bb34d5

Please sign in to comment.