Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: timeZone does not gets updated for user login, removed confirm alert, and added loading state #280

Merged
merged 7 commits into from
Feb 21, 2024
Prev Previous commit
Next Next commit
Improved: code to search time zones as we enter in searchbar
  • Loading branch information
amansinghbais committed Dec 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 5895942281d901e5780091747105dca76b0bd1f2
2 changes: 1 addition & 1 deletion src/views/TimezoneModal.vue
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
<ion-title>{{ $t("Select time zone") }}</ion-title>
</ion-toolbar>
<ion-toolbar>
<ion-searchbar @ionFocus="selectSearchBarText($event)" :placeholder="$t('Search time zones')" v-model="queryString" @keyup.enter="queryString = $event.target.value; findTimeZone()" @keydown="preventSpecialCharacters($event)" />
<ion-searchbar @ionFocus="selectSearchBarText($event)" :placeholder="$t('Search time zones')" v-model="queryString" @ionChange="findTimeZone()" @keydown="preventSpecialCharacters($event)" />
</ion-toolbar>
</ion-header>

Loading