Enable loading spinner for notebook editor. (#18810)

This commit is contained in:
Cory Rivera
2022-03-24 16:31:33 -07:00
committed by GitHub
parent f325a2df08
commit d9501ffc03
5 changed files with 32 additions and 11 deletions

View File

@@ -8,7 +8,6 @@
<div #toolbar class="editor-toolbar actionbar-container" style="flex: 0 0 auto; display: flex; flex-flow: row; width: 100%; align-items: center;">
</div>
<div #container class="scrollable" style="flex: 1 1 auto; position: relative; outline: none" (click)="clickOffCell($event)" (scroll)="scrollHandler($event)">
<loading-spinner [loading]="isLoading"></loading-spinner>
<div *ngFor="let cell of cells">
<div id="{{ cell.id }}" class="notebook-cell" (click)="clickOnCell(cell, $event)" [class.active]="cell.active">
<cell-toolbar-component *ngIf="cell.active" [cellModel]="cell" [model]="model"></cell-toolbar-component>