You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue exists at least with the latest Firefox and Chrome, and can be seen e.g. at http://indrimuska.github.io/angular-selector/ with "RTL Support" demo when trying to open the select by clicking the placeholder text -- which is the intuitive way to do it.
My workaround to the problem for the time being is to just always display the select on click: onDropdownClick() { if (typeof this.dropdownSelected === 'undefined') { this.$timeout(() => { this.dropdownAPI.open(); }, 10); } }
The text was updated successfully, but these errors were encountered:
The issue exists at least with the latest Firefox and Chrome, and can be seen e.g. at http://indrimuska.github.io/angular-selector/ with "RTL Support" demo when trying to open the select by clicking the placeholder text -- which is the intuitive way to do it.
My workaround to the problem for the time being is to just always display the select on click:
onDropdownClick() { if (typeof this.dropdownSelected === 'undefined') { this.$timeout(() => { this.dropdownAPI.open(); }, 10); } }
The text was updated successfully, but these errors were encountered: