From e5c13ce6fd5f64cfecb71207f37c729dd0ba38af Mon Sep 17 00:00:00 2001 From: Chris Rec Date: Tue, 29 Oct 2024 08:07:30 -0700 Subject: [PATCH 1/2] 100 default rows --- frontend/src/config/store/store.utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/config/store/store.utils.ts b/frontend/src/config/store/store.utils.ts index 8c8a65d..25f0149 100644 --- a/frontend/src/config/store/store.utils.ts +++ b/frontend/src/config/store/store.utils.ts @@ -56,7 +56,7 @@ export function getBlankTable(name?: string): AnswerTable { id: cuid(), name: name ?? "First Table", columns: times(10, getBlankColumn), - rows: times(1000, getBlankRow), + rows: times(100, getBlankRow), globalRules: [], filters: [], chunks: {}, From a774fbf909e2b25beb7c445d0d70da28959d022c Mon Sep 17 00:00:00 2001 From: Chris Rec Date: Tue, 29 Oct 2024 08:08:40 -0700 Subject: [PATCH 2/2] updating changelog --- frontend/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md index df3812d..f49884a 100644 --- a/frontend/CHANGELOG.md +++ b/frontend/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- UI: Set default rows to 100 - Updating backend to work with new UI - UI: Global rules - UI: Reactgrid integration