diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-11 16:45:16 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-11 16:45:16 +0300 |
| commit | 2f1f1455aac268a138b0bf6a62d047a07c62e889 (patch) | |
| tree | 3678d4208a9cfa677f697919ab0bcd97c42b74cb /src | |
| parent | e5f0f95356fcae36310c98571b8ab8df9fbce958 (diff) | |
fix notifications scrolling the main column
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 84a9e29e..2febf226 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -486,7 +486,7 @@ const PostStatusForm = { const bottomBottomPaddingStr = window.getComputedStyle(bottomRef)['padding-bottom'] const bottomBottomPadding = pxStringToNumber(bottomBottomPaddingStr) - const scrollerRef = this.$el.closest('.sidebar-scroller') || + const scrollerRef = this.$el.closest('.column.-scrollable') || this.$el.closest('.post-form-modal-view') || window |
