mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	fix chat message pagination (#278)
This commit is contained in:
		@ -235,7 +235,7 @@ export default function Chat() {
 | 
				
			|||||||
      <Table
 | 
					      <Table
 | 
				
			||||||
        size="small"
 | 
					        size="small"
 | 
				
			||||||
        className="table-container"
 | 
					        className="table-container"
 | 
				
			||||||
        pagination={{ pageSize: 100 }}
 | 
					        pagination={{ defaultPageSize: 100, showSizeChanger: true }}
 | 
				
			||||||
        scroll={{ y: 540 }}
 | 
					        scroll={{ y: 540 }}
 | 
				
			||||||
        rowClassName={record => (record.hiddenAt ? 'hidden' : '')}
 | 
					        rowClassName={record => (record.hiddenAt ? 'hidden' : '')}
 | 
				
			||||||
        dataSource={messages}
 | 
					        dataSource={messages}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user