diff --git a/AppImage/components/storage-overview.tsx b/AppImage/components/storage-overview.tsx index c117b4d5..3c4fa32c 100644 --- a/AppImage/components/storage-overview.tsx +++ b/AppImage/components/storage-overview.tsx @@ -1442,20 +1442,20 @@ export function StorageOverview() {

Wear & Lifetime - {smartJsonData?.has_data && ( + {smartJsonData?.has_data && !wi && ( Real Test )}

-
+
{lifeRemaining !== null && (
- - - - {lifeRemaining}% - life + + + + {lifeRemaining}% + life
)} @@ -3438,17 +3438,22 @@ function HistoryTab({ disk }: { disk: DiskInfo }) { return (
!isDeleting && handleViewReport(entry)} + className={`border rounded-lg p-3 flex items-center gap-3 transition-colors cursor-pointer hover:bg-white/5 ${ isLatest ? 'border-orange-500/30' : 'border-border' - } ${isDeleting ? 'opacity-50' : ''}`} + } ${isDeleting ? 'opacity-50 pointer-events-none' : ''} ${isViewing ? 'opacity-70' : ''}`} > - - {entry.test_type === 'long' ? 'Extended' : 'Short'} - + {isViewing ? ( + + ) : ( + + {entry.test_type === 'long' ? 'Extended' : 'Short'} + + )}

@@ -3461,19 +3466,10 @@ function HistoryTab({ disk }: { disk: DiskInfo }) {

-