mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06: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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const h = $("#reply-control").height() || 0;
|
const h = $("#reply-control:not(.saving)").height() || 0;
|
||||||
this.movePanels(h);
|
this.movePanels(h);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user