fix(downloads): upspeed font size wrong (#3214)
This commit is contained in:
@@ -538,7 +538,7 @@ export default function DownloadClientsWidget({
|
|||||||
sortUndefined: "last",
|
sortUndefined: "last",
|
||||||
Cell: ({ cell }) => {
|
Cell: ({ cell }) => {
|
||||||
const upSpeed = cell.getValue<ExtendedDownloadClientItem["upSpeed"]>();
|
const upSpeed = cell.getValue<ExtendedDownloadClientItem["upSpeed"]>();
|
||||||
return upSpeed && <Text>{humanFileSize(upSpeed, "/s")}</Text>;
|
return upSpeed && <Text size="xs">{humanFileSize(upSpeed, "/s")}</Text>;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user