fix accessibility issues (#9824)

* fix accessibility issues

* fix no active cell

* more fixes
This commit is contained in:
Anthony Dresser
2020-04-06 19:38:40 -07:00
committed by GitHub
parent 9c876f869a
commit 9819e97f7b
8 changed files with 22 additions and 13 deletions

View File

@@ -234,7 +234,7 @@ export class Table<T extends Slick.SlickData> extends Widget implements IDisposa
this._grid.setActiveCell(0, 1);
}
get activeCell(): Slick.Cell {
get activeCell(): Slick.Cell | null {
return this._grid.getActiveCell();
}