Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
adpare committed Feb 15, 2024
1 parent c9c38e1 commit a6cd349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav-app/src/app/layer-upgrade/layer-upgrade.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class LayerUpgradeComponent implements OnInit {
*/
public expandAll(): void {
let elements = document.querySelectorAll<HTMLElement>('.mat-expansion-panel-content');
for(let i =0; i < elements.length; i++){
for(let i = 0; i < elements.length; i++){
elements[i].style.visibility = 'visible';
elements[i].style.height = 'fit-content';
}
Expand Down

0 comments on commit a6cd349

Please sign in to comment.