diff options
author | Anderson Shindy Oki <[email protected]> | 2024-06-10 10:17:45 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-09 21:17:45 -0400 |
commit | d75c198c6c81ce85b0b7e8d6cbc664f70778ce63 (patch) | |
tree | df2e8700a053d5c9ea86a426521694c5366f72c5 | |
parent | 854c43c53a737fb75e5d8f1ce35130690b8d69d2 (diff) | |
download | bazarr-d75c198c6c81ce85b0b7e8d6cbc664f70778ce63.tar.gz bazarr-d75c198c6c81ce85b0b7e8d6cbc664f70778ce63.zip |
Fixed episode history modal auto scrolling to top
-rw-r--r-- | frontend/src/components/modals/HistoryModal.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/components/modals/HistoryModal.tsx b/frontend/src/components/modals/HistoryModal.tsx index b2d28a622..888f0bafb 100644 --- a/frontend/src/components/modals/HistoryModal.tsx +++ b/frontend/src/components/modals/HistoryModal.tsx @@ -269,6 +269,7 @@ const EpisodeHistoryView: FunctionComponent<EpisodeHistoryViewProps> = ({ return ( <QueryOverlay result={history}> <PageTable + autoScroll={false} tableStyles={{ emptyText: "No history found", placeholder: 5 }} columns={columns} data={data ?? []} |