Skip to content

Commit

Permalink
Merge pull request #47 from whyhow-ai/modify-default-rows
Browse files Browse the repository at this point in the history
Set default rows to 100
  • Loading branch information
tomsmoker authored Oct 29, 2024
2 parents 5018633 + a774fbf commit e0c2d84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config/store/store.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {},
Expand Down

0 comments on commit e0c2d84

Please sign in to comment.