mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
disable single attribute per line
This commit is contained in:
@@ -53,12 +53,7 @@ export const formatDurationString = (duration: number) => {
|
||||
};
|
||||
|
||||
export const formatRating = (item: Album | AlbumArtist | Song) =>
|
||||
item.userRating !== null ? (
|
||||
<Rating
|
||||
readOnly
|
||||
value={item.userRating}
|
||||
/>
|
||||
) : null;
|
||||
item.userRating !== null ? <Rating readOnly value={item.userRating} /> : null;
|
||||
|
||||
const SIZES = ['B', 'KiB', 'MiB', 'GiB', 'TiB'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user