mirror of
https://github.com/discourse/discourse.git
synced 2025-03-01 16:59:22 +00:00
FIX: prevents a regression where enter wasn't working in inputs
This commit is contained in:
parent
0776340b29
commit
5cd5d5aca5
@ -16,7 +16,9 @@ export default Ember.TextField.extend({
|
||||
}
|
||||
},
|
||||
|
||||
keyUp() {
|
||||
keyUp(event) {
|
||||
this._super(event);
|
||||
|
||||
if (this.siteSettings.support_mixed_text_direction) {
|
||||
let val = this.value;
|
||||
if (isRTL(val)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user