mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 09:35:37 -05:00
Fix tabbing through Notebook cells (#9758)
* Fix tabbing through Notebook cells * Fix toggle tab command and re-order DOM
This commit is contained in:
@@ -21,12 +21,7 @@
|
||||
</button>
|
||||
</div>
|
||||
<div *ngFor="let cell of cells">
|
||||
<div class="notebook-cell"
|
||||
(click)="selectCell(cell, $event)"
|
||||
(focus)="selectCell(cell, $event)"
|
||||
[class.active]="cell.active"
|
||||
[attr.aria-label]="cell.ariaLabel"
|
||||
tabindex="0">
|
||||
<div class="notebook-cell" (click)="selectCell(cell, $event)" [class.active]="cell.active">
|
||||
<code-cell-component *ngIf="cell.cellType === 'code'" [cellModel]="cell" [model]="model" [activeCellId]="activeCellId">
|
||||
</code-cell-component>
|
||||
<text-cell-component *ngIf="cell.cellType === 'markdown'" [cellModel]="cell" [model]="model" [activeCellId]="activeCellId">
|
||||
|
||||
Reference in New Issue
Block a user