You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the task
Fix the default row display behavior in the credit application table so it adjusts to the actual size of the dataset. Currently, it always defaults to 100 rows, even when there are only a few rows. This wastes space and is not user-friendly. The table should instead default to the next closest option from the available row numbers: 5, 10, 15, 20, 25, 50, 100.
For example:
If there are 5 rows of data, it should default to 5.
If there are 18 rows, it should default to 20 (the next closest option).
If there are 2000 rows, it should default to 100 rows per page, and the user can use pagination to move to the next set of rows.
Purpose
This update will make the table cleaner and more user-friendly for datasets of any size. For smaller datasets, it eliminates unnecessary empty space.
Acceptance Criteria
The table defaults to the next closest option based on the number of rows in the dataset (available options: 5, 10, 15, 20, 25, 50, 100).
If the dataset has fewer rows than the smallest option (5), it defaults to 5.
If the dataset falls between two options (e.g., 18 rows), it rounds up to the next closest choice (e.g., 20).
The dropdown for selecting rows (5, 10, 15, etc.) continues to function as expected.
Additional context
The text was updated successfully, but these errors were encountered:
Describe the task
Fix the default row display behavior in the credit application table so it adjusts to the actual size of the dataset. Currently, it always defaults to 100 rows, even when there are only a few rows. This wastes space and is not user-friendly. The table should instead default to the next closest option from the available row numbers: 5, 10, 15, 20, 25, 50, 100.
For example:
Purpose
This update will make the table cleaner and more user-friendly for datasets of any size. For smaller datasets, it eliminates unnecessary empty space.
Acceptance Criteria
Additional context
The text was updated successfully, but these errors were encountered: