fix lint issues

This commit is contained in:
mfrances 2021-06-01 16:09:16 -04:00
parent 63a365ad93
commit b9c38e811e
3 changed files with 6 additions and 6 deletions

View file

@ -85,7 +85,7 @@ function DataTable<T>({
? (_, rowIndex, isOpen) => onCollapse(isOpen, rowIndex)
: undefined
}
selectVariant={isRadio ? 'radio' : 'checkbox'}
selectVariant={isRadio ? "radio" : "checkbox"}
canSelectAll={canSelectAll}
cells={columns.map((column) => {
return { ...column, title: t(column.displayKey || column.name) };