Skip to content

Commit

Permalink
Implemented suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmukhdutt committed Jan 12, 2024
1 parent b97747f commit 0ebfc1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/TimezoneModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<ion-searchbar @ionFocus="selectSearchBarText($event)" :placeholder="$t('Search time zones')" v-model="queryString" @keyup.enter="queryString = $event.target.value; findTimeZone()" @keydown="preventSpecialCharacters($event)" />
</ion-toolbar>
</ion-header>


<ion-content class="ion-padding">
<!-- Empty state -->
Expand Down Expand Up @@ -136,7 +135,7 @@ export default defineComponent({
});
},
async getAvailableTimeZones() {
// this.isLoading = true
this.isLoading = true
const resp = await UserService.getAvailableTimeZones()
if(resp.status === 200 && !hasError(resp)) {
// We are filtering valid the timeZones coming with response here
Expand Down

0 comments on commit 0ebfc1b

Please sign in to comment.