Skip to content

Commit ecac390

Browse files
committed
bug : timezone select patched
1 parent 1953649 commit ecac390

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

public/js/viewDashboard.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ class VueDashboard {
129129
}
130130
}
131131
onInputAutoComplete(e) {
132-
if (e.target.value in this.timezoneSelector.options.data)
132+
//Bug patched for selecting :
133+
if (e.target.value in this.timezoneSelector.options.data || " " + e.target.value in this.timezoneSelector.options.data)
133134
this.addTimezone.classList.remove("disabled");
134135
else
135136
this.addTimezone.classList.add("disabled");

0 commit comments

Comments
 (0)