Skip to content

Commit b096e5c

Browse files
authored
chore: increase the virtual-list default height (#2095)
1 parent 5f50d14 commit b096e5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vaadin-virtual-list/src/vaadin-virtual-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class VirtualListElement extends ElementMixin(ThemableMixin(PolymerElement)) {
3535
<style>
3636
:host {
3737
display: block;
38-
height: 200px;
38+
height: 400px;
3939
overflow: auto;
4040
flex: auto;
4141
align-self: stretch;

packages/vaadin-virtual-list/test/virtual-list.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('virtual-list', () => {
1010
});
1111

1212
it('should have a default height', () => {
13-
expect(list.offsetHeight).to.equal(200);
13+
expect(list.offsetHeight).to.equal(400);
1414
});
1515

1616
it('should override default height', () => {

0 commit comments

Comments
 (0)