add hover only columns

This commit is contained in:
jeffvli
2025-10-07 16:58:05 -07:00
parent e4189e92d0
commit dafd914696
5 changed files with 38 additions and 6 deletions
@@ -12,7 +12,7 @@ export const RatingColumn = (props: ItemTableListInnerColumn) => {
if (typeof row === 'number' || row === null) {
return (
<TableColumnContainer {...props}>
<Rating readOnly value={row || 0} />
<Rating className={row ? undefined : 'hover-only-flex'} value={row || 0} />
</TableColumnContainer>
);
}