Fix details initial height when open; closes #160

pull/165/head
Cory LaViska 2020-08-05 13:45:39 -04:00
rodzic e5a38c27af
commit b15a12d4e1
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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';
}
}