Skip to content

Commit e0c2d84

Browse files
authored
Merge pull request #47 from whyhow-ai/modify-default-rows
Set default rows to 100
2 parents 5018633 + a774fbf commit e0c2d84

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

frontend/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- UI: Set default rows to 100
1213
- Updating backend to work with new UI
1314
- UI: Global rules
1415
- UI: Reactgrid integration

frontend/src/config/store/store.utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function getBlankTable(name?: string): AnswerTable {
5656
id: cuid(),
5757
name: name ?? "First Table",
5858
columns: times(10, getBlankColumn),
59-
rows: times(1000, getBlankRow),
59+
rows: times(100, getBlankRow),
6060
globalRules: [],
6161
filters: [],
6262
chunks: {},

0 commit comments

Comments
 (0)