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:
Penar Musaraj 2020-01-10 12:57:16 -05:00
parent 7ee09aa0d2
commit 687c79ca1c

View File

@ -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);
});
},