Skip to content

Commit

Permalink
fix: lock icon on locked excluded
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Wizard committed Mar 15, 2023
1 parent 9958a7e commit cab4fae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Expand Up @@ -95,7 +95,7 @@ function RowColumn({ index, rowIndex, columnIndex, style, data }) {
const handleKeyDownCallback = useCallback(getFieldKeyboardNavigation({ ...actions, focusListItems }), [actions]);

const cell = useMemo(() => getCellFromPages({ pages, cellIndex }), [pages, cellIndex]);
const isSelected = cell?.qState === 'S' || cell?.qState === 'XS' || cell?.qState === 'L';
const isSelected = cell?.qState === 'S' || cell?.qState === 'XS' || cell?.qState === 'L' || cell?.qState === 'XL';

const classArr = useMemo(
() => getValueStateClasses({ column, histogram, checkboxes, cell, showGray }),
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cab4fae

Please sign in to comment.