Use grey dot when ARP scanner is waiting for next run

Amber implied a problem when the scanner is simply idle between runs.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-01 07:46:51 -04:00
co-authored by Claude Opus 4.7
parent 408585c056
commit 376eb3c367
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ class ArpScannerCard extends StatelessWidget {
double.infinity,
);
return (
color: Colors.amber,
color: Colors.grey,
label: 'Waiting for next run',
sublabels: ['Next run in ${formatSeconds(remaining)}'],
);
@@ -219,7 +219,7 @@ class _ScannersStatusCardState extends State<ScannersStatusCard>
0.0,
double.infinity,
);
return (Colors.amber, 'Next run in ${formatSeconds(remaining)}');
return (Colors.grey, 'Next run in ${formatSeconds(remaining)}');
}
return (Colors.grey, 'Not yet started');
}