);
}
@@ -296,6 +301,7 @@ class ArtistIndexPosters extends Component {
overscanRowCount={2}
cellRenderer={this.cellRenderer}
onSectionRendered={this.onSectionRendered}
+ isScrollingOptOut={true}
/>
);
}
diff --git a/frontend/src/Artist/Index/Table/ArtistIndexRow.js b/frontend/src/Artist/Index/Table/ArtistIndexRow.js
index 6b597509f..6acf8a5b9 100644
--- a/frontend/src/Artist/Index/Table/ArtistIndexRow.js
+++ b/frontend/src/Artist/Index/Table/ArtistIndexRow.js
@@ -10,8 +10,6 @@ import Link from 'Components/Link/Link';
import SpinnerIconButton from 'Components/Link/SpinnerIconButton';
import ProgressBar from 'Components/ProgressBar';
import TagListConnector from 'Components/TagListConnector';
-// import CheckInput from 'Components/Form/CheckInput';
-import VirtualTableRow from 'Components/Table/VirtualTableRow';
import VirtualTableRowCell from 'Components/Table/Cells/VirtualTableRowCell';
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
import ArtistNameLink from 'Artist/ArtistNameLink';
@@ -79,7 +77,6 @@ class ArtistIndexRow extends Component {
render() {
const {
- style,
id,
monitored,
status,
@@ -121,7 +118,7 @@ class ArtistIndexRow extends Component {
} = this.state;
return (
-
+ <>
{
columns.map((column) => {
const {
@@ -436,13 +433,12 @@ class ArtistIndexRow extends Component {
artistId={id}
onModalClose={this.onDeleteArtistModalClose}
/>
-
+ >
);
}
}
ArtistIndexRow.propTypes = {
- style: PropTypes.object.isRequired,
id: PropTypes.number.isRequired,
monitored: PropTypes.bool.isRequired,
status: PropTypes.string.isRequired,
diff --git a/frontend/src/Artist/Index/Table/ArtistIndexTable.js b/frontend/src/Artist/Index/Table/ArtistIndexTable.js
index fcece7a2c..47b7fef1c 100644
--- a/frontend/src/Artist/Index/Table/ArtistIndexTable.js
+++ b/frontend/src/Artist/Index/Table/ArtistIndexTable.js
@@ -3,6 +3,7 @@ import React, { Component } from 'react';
import getIndexOfFirstCharacter from 'Utilities/Array/getIndexOfFirstCharacter';
import { sortDirections } from 'Helpers/Props';
import VirtualTable from 'Components/Table/VirtualTable';
+import VirtualTableRow from 'Components/Table/VirtualTableRow';
import ArtistIndexItemConnector from 'Artist/Index/ArtistIndexItemConnector';
import ArtistIndexHeaderConnector from './ArtistIndexHeaderConnector';
import ArtistIndexRow from './ArtistIndexRow';
@@ -50,16 +51,21 @@ class ArtistIndexTable extends Component {
const artist = items[rowIndex];
return (
-
+ >
+
+
);
}
@@ -108,6 +114,7 @@ class ArtistIndexTable extends Component {
sortDirection={sortDirection}
onRender={onRender}
onScroll={onScroll}
+ isScrollingOptOut={true}
/>
);
}