Set VLV Cell tabIndex to -1 if the item is falsy or non-navigable (#947)

This commit is contained in:
Brent Erickson 2018-11-30 18:54:43 -08:00 коммит произвёл Eric Traut
Родитель 610a5e089b
Коммит ae2ac8675a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1115,7 +1115,7 @@ export class VirtualListView<ItemInfo extends VirtualListViewItemInfo>
}
_.each(cellList, cell => {
let tabIndexValue: number | undefined;
let tabIndexValue = -1;
let isFocused = false;
if (cell.item) {
if (cell.item && cell.item.isNavigable) {