File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
src/gui/components/notebook Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -377,10 +377,10 @@ function RecordsTable(props: RecordsTableProps) {
377
377
getRowClassName = { params => {
378
378
return `${ params . row . conflicts ? 'bg-warning' : '' } ` ;
379
379
} }
380
- components = { {
380
+ slots = { {
381
381
Toolbar : NotebookDataGridToolbar ,
382
382
} }
383
- componentsProps = { {
383
+ slotProps = { {
384
384
filterPanel : { sx : { maxWidth : '96vw' } } ,
385
385
toolbar : {
386
386
handleQueryFunction : props . handleQueryFunction ,
@@ -459,10 +459,6 @@ export function RecordsBrowseTable(props: RecordsBrowseTableProps) {
459
459
getData ( ) ;
460
460
} , [ props . project_id , query ] ) ;
461
461
462
- if ( DEBUG_APP ) {
463
- console . debug ( 'New records:' , pouchData ) ;
464
- }
465
-
466
462
const rows = pouchData ?? [ ] ;
467
463
const loading = pouchData === undefined ;
468
464
You can’t perform that action at this time.
0 commit comments