You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2020/12/16 05:39:56 UTC

[GitHub] [incubator-superset] rusackas commented on a change in pull request #11979: fix(dataset): Page blanks on large data load

rusackas commented on a change in pull request #11979:
URL: https://github.com/apache/incubator-superset/pull/11979#discussion_r543985556



##########
File path: superset-frontend/src/explore/components/DataTablesPane.tsx
##########
@@ -191,11 +195,13 @@ export const DataTablesPane = ({
       if (data[type]?.length === 0) {
         return <span>No data</span>;
       }
+      const renderWithPagination = true;
       return (
         <TableView
           columns={columns[type]}
           data={filteredData[type]}
-          withPagination={false}
+          withPagination={renderWithPagination}

Review comment:
       ```suggestion
             withPagination
   ```
   ^ I think this is what @villebro is suggesting... does this still throw errors?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org