Skip to content

Commit

Permalink
Fixed: boolean values of isLoading in timezone modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ritika-Patel08 committed Jan 31, 2024
1 parent 1e99515 commit 5087e32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/TimezoneModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</ion-radio-group>
</ion-list>
</div>

<ion-fab vertical="bottom" horizontal="end" slot="fixed">
<ion-fab-button :disabled="!timeZoneId" @click="saveAlert">
<ion-icon :icon="save" />
Expand Down Expand Up @@ -98,7 +98,7 @@ export default defineComponent({
filteredTimeZones: [],
timeZones: [],
timeZoneId: '',
isLoading: true
isLoading: false
}
},
methods: {
Expand Down Expand Up @@ -147,7 +147,7 @@ export default defineComponent({
});
this.findTimeZone();
}
//this.isLoading = false;
this.isLoading = false;
})
},
selectSearchBarText(event: any) {
Expand Down

0 comments on commit 5087e32

Please sign in to comment.