Merge claude/2
This commit is contained in:
commit
cc60794367
@ -342,10 +342,16 @@ class OverviewManager {
|
|||||||
let sub;
|
let sub;
|
||||||
if (scanned) {
|
if (scanned) {
|
||||||
const checked = u.lastChecked ? this.updater.fmtRel(u.lastChecked) : 'never';
|
const checked = u.lastChecked ? this.updater.fmtRel(u.lastChecked) : 'never';
|
||||||
const bits = [`${u.apps} app${u.apps === 1 ? '' : 's'} tracked`];
|
if (!u.apps) {
|
||||||
if (this.backup) bits.push(`${b.protectedLabel} backed up`);
|
// Nothing tracked yet — the counts ("0 apps tracked · 0/0 backed up")
|
||||||
bits.push(`last scan ${checked}`);
|
// are just noise, so show only the scan time.
|
||||||
sub = bits.join(' · ');
|
sub = `last scan ${checked}`;
|
||||||
|
} else {
|
||||||
|
const bits = [`${u.apps} app${u.apps === 1 ? '' : 's'} tracked`];
|
||||||
|
if (this.backup) bits.push(`${b.protectedLabel} backed up`);
|
||||||
|
bits.push(`last scan ${checked}`);
|
||||||
|
sub = bits.join(' · ');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
sub = 'The first automatic scan runs within a couple of minutes — or hit Check now.';
|
sub = 'The first automatic scan runs within a couple of minutes — or hit Check now.';
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user