Fix details initial height when open; closes #160

This commit is contained in:
Cory LaViska
2020-08-05 13:45:39 -04:00
parent e5a38c27af
commit b15a12d4e1

View File

@@ -65,7 +65,8 @@ export class Details {
// Show on init if open
if (this.open) {
this.show();
this.body.style.height = 'auto';
this.body.style.overflow = 'visible';
}
}