mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 15:14:16 +08:00
FIX: regression preventing the display of replying...
in the composer
This commit is contained in:
@ -68,7 +68,7 @@ export default Ember.Component.extend({
|
|||||||
|
|
||||||
this.clear();
|
this.clear();
|
||||||
|
|
||||||
if (this.get('action') !== 'reply' || this.get('action') !== 'edit') {
|
if (!['reply', 'edit'].includes(this.get('action'))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user