mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 19:46:55 +08:00
FIX: Remove padding while composer is saving
Padding on `#main-outlet` while compooser was in "saving" state was causing posts to bounce after replying.
This commit is contained in:
parent
7ee09aa0d2
commit
687c79ca1c
|
@ -70,7 +70,7 @@ export default Component.extend(KeyEnterEscape, {
|
|||
return;
|
||||
}
|
||||
|
||||
const h = $("#reply-control").height() || 0;
|
||||
const h = $("#reply-control:not(.saving)").height() || 0;
|
||||
this.movePanels(h);
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user