We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1953649 commit ecac390Copy full SHA for ecac390
public/js/viewDashboard.js
@@ -129,7 +129,8 @@ class VueDashboard {
129
}
130
131
onInputAutoComplete(e) {
132
- if (e.target.value in this.timezoneSelector.options.data)
+ //Bug patched for selecting :
133
+ if (e.target.value in this.timezoneSelector.options.data || " " + e.target.value in this.timezoneSelector.options.data)
134
this.addTimezone.classList.remove("disabled");
135
else
136
this.addTimezone.classList.add("disabled");
0 commit comments