Skip to content

Commit 311e0de

Browse files
committed
Minor fix of rowsPerPage values
1 parent a4f1a8d commit 311e0de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renderer/components/dbComponents/inputToolsDB/convertCategoricalColumnIntoNumericDB.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ const ConvertCategoricalColumnIntoNumericDB = ({ currentCollection }) => {
330330
</div>
331331
{data.length > 0 && (
332332
<Card style={{ width: "900px" }}>
333-
<DataTable value={data} paginator rows={5} rowsPerPageOptions={[5, 10, 15]} className="p-datatable-gridlines">
333+
<DataTable value={data} paginator rows={5} rowsPerPageOptions={[5, 10]} className="p-datatable-gridlines">
334334
{columns.map((col) => (
335335
<Column
336336
key={col.field}

0 commit comments

Comments
 (0)