diff --git a/packages/web/components/patterns/LibraryCards/LibraryCardStyles.tsx b/packages/web/components/patterns/LibraryCards/LibraryCardStyles.tsx index 34e28c50d..cf421f402 100644 --- a/packages/web/components/patterns/LibraryCards/LibraryCardStyles.tsx +++ b/packages/web/components/patterns/LibraryCards/LibraryCardStyles.tsx @@ -134,17 +134,17 @@ export function LibraryItemMetadata( Math.round((props.item.wordsCount ?? 0) / 235) )} min read` : null} + {highlightCount > 0 + ? ` • ${highlightCount} highlight${highlightCount > 1 ? 's' : ''}` + : null} {(props.showProgress && props.item.readingProgressPercent) ?? 0 > 0 ? ( <> - {` • `} + {` | `} {`${Math.round(props.item.readingProgressPercent)}%`} ) : null} - {highlightCount > 0 - ? ` • ${highlightCount} highlight${highlightCount > 1 ? 's' : ''}` - : null} ) }