mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Change scanner status label "Not yet started" to "Not started"
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
08ee4fc0ea
commit
abeba88fec
@@ -44,6 +44,6 @@ class ArpScannerCard extends StatelessWidget {
|
|||||||
sublabels: ['Next run in ${formatSeconds(remaining)}'],
|
sublabels: ['Next run in ${formatSeconds(remaining)}'],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (color: neutralColor, label: 'Not yet started', sublabels: []);
|
return (color: neutralColor, label: 'Not started', sublabels: []);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class DhcpScannerCard extends StatelessWidget {
|
|||||||
if (!status.isListening) {
|
if (!status.isListening) {
|
||||||
return (
|
return (
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
label: 'Not yet started',
|
label: 'Not started',
|
||||||
sublabels: [],
|
sublabels: [],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class MdnsScannerCard extends StatelessWidget {
|
|||||||
if (!status.isListening) {
|
if (!status.isListening) {
|
||||||
return (
|
return (
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
label: 'Not yet started',
|
label: 'Not started',
|
||||||
sublabels: [],
|
sublabels: [],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -273,7 +273,7 @@ class _ScannersStatusCardState extends State<ScannersStatusCard>
|
|||||||
);
|
);
|
||||||
return (neutralColor, 'Next run in ${formatSeconds(remaining)}');
|
return (neutralColor, 'Next run in ${formatSeconds(remaining)}');
|
||||||
}
|
}
|
||||||
return (neutralColor, 'Not yet started');
|
return (neutralColor, 'Not started');
|
||||||
}
|
}
|
||||||
|
|
||||||
(Color, String) _resolveMdns(
|
(Color, String) _resolveMdns(
|
||||||
@@ -298,7 +298,7 @@ class _ScannersStatusCardState extends State<ScannersStatusCard>
|
|||||||
}
|
}
|
||||||
return (successColor, 'No devices seen yet');
|
return (successColor, 'No devices seen yet');
|
||||||
}
|
}
|
||||||
return (neutralColor, 'Not yet started');
|
return (neutralColor, 'Not started');
|
||||||
}
|
}
|
||||||
|
|
||||||
(Color, String) _resolveSsdp(
|
(Color, String) _resolveSsdp(
|
||||||
@@ -323,7 +323,7 @@ class _ScannersStatusCardState extends State<ScannersStatusCard>
|
|||||||
}
|
}
|
||||||
return (successColor, 'No devices seen yet');
|
return (successColor, 'No devices seen yet');
|
||||||
}
|
}
|
||||||
return (neutralColor, 'Not yet started');
|
return (neutralColor, 'Not started');
|
||||||
}
|
}
|
||||||
|
|
||||||
(Color, String) _resolveDhcp(
|
(Color, String) _resolveDhcp(
|
||||||
@@ -348,6 +348,6 @@ class _ScannersStatusCardState extends State<ScannersStatusCard>
|
|||||||
}
|
}
|
||||||
return (successColor, 'No devices seen yet');
|
return (successColor, 'No devices seen yet');
|
||||||
}
|
}
|
||||||
return (neutralColor, 'Not yet started');
|
return (neutralColor, 'Not started');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class SsdpScannerCard extends StatelessWidget {
|
|||||||
if (!status.isListening) {
|
if (!status.isListening) {
|
||||||
return (
|
return (
|
||||||
color: Theme.of(context).colorScheme.outline,
|
color: Theme.of(context).colorScheme.outline,
|
||||||
label: 'Not yet started',
|
label: 'Not started',
|
||||||
sublabels: [],
|
sublabels: [],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user