mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-25 09:18:51 +01:00
Fix active filter scrolling to wrong position on larger viewport
This commit is contained in:
parent
ff7db6212d
commit
d35d0cbe18
1 changed files with 7 additions and 1 deletions
|
@ -276,7 +276,13 @@ function AccountStatuses() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{accountInfoMemo}
|
{accountInfoMemo}
|
||||||
<div class="filter-bar" ref={filterBarRef}>
|
<div
|
||||||
|
class="filter-bar"
|
||||||
|
ref={filterBarRef}
|
||||||
|
style={{
|
||||||
|
position: 'relative',
|
||||||
|
}}
|
||||||
|
>
|
||||||
{filtered ? (
|
{filtered ? (
|
||||||
<Link
|
<Link
|
||||||
to={`/${instance}/a/${id}`}
|
to={`/${instance}/a/${id}`}
|
||||||
|
|
Loading…
Reference in a new issue