add remaining table columns

This commit is contained in:
jeffvli
2025-10-09 11:06:10 -07:00
parent 076710672c
commit c5c9311d00
10 changed files with 207 additions and 10 deletions
@@ -12,7 +12,11 @@ export const RatingColumn = (props: ItemTableListInnerColumn) => {
if (typeof row === 'number' || row === null) {
return (
<TableColumnContainer {...props}>
<Rating className={row ? undefined : 'hover-only-flex'} value={row || 0} />
<Rating
className={row ? undefined : 'hover-only-flex'}
size="xs"
value={row || 0}
/>
</TableColumnContainer>
);
}