diff --git a/apps/readest-app/src/components/metadata/BookDetailView.tsx b/apps/readest-app/src/components/metadata/BookDetailView.tsx index fc7b729a..3707e7d1 100644 --- a/apps/readest-app/src/components/metadata/BookDetailView.tsx +++ b/apps/readest-app/src/components/metadata/BookDetailView.tsx @@ -164,7 +164,7 @@ const BookDetailView: React.FC = ({
{_('Description')}

{ percentage: Math.round((storagPlan.usage / storagPlan.quota) * 100), }), used: parseFloat((storagPlan.usage / 1024 / 1024 / (inGB ? 1024 : 1)).toFixed(2)), - total: Math.round(storagPlan.quota / 1024 / 1024 / (inGB ? 1024 : 1)), + total: Math.round((storagPlan.quota / 1024 / 1024 / (inGB ? 1024 : 1)) * 10) / 10, unit: inGB ? 'GB' : 'MB', }; const translationPlan = getTranslationPlanData(token);