We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5018633 + a774fbf commit e0c2d84Copy full SHA for e0c2d84
frontend/CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
### Added
11
12
+- UI: Set default rows to 100
13
- Updating backend to work with new UI
14
- UI: Global rules
15
- UI: Reactgrid integration
frontend/src/config/store/store.utils.ts
@@ -56,7 +56,7 @@ export function getBlankTable(name?: string): AnswerTable {
56
id: cuid(),
57
name: name ?? "First Table",
58
columns: times(10, getBlankColumn),
59
- rows: times(1000, getBlankRow),
+ rows: times(100, getBlankRow),
60
globalRules: [],
61
filters: [],
62
chunks: {},
0 commit comments