We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c4df02 commit b0f6f50Copy full SHA for b0f6f50
1 file changed
lib/dashboard.dart
@@ -358,7 +358,7 @@ class _DashboardState extends State<Dashboard> with WindowListener {
358
mainAxisAlignment: MainAxisAlignment.end,
359
children: [
360
Tooltip(
361
- message: trafficData?.uploadMsg,
+ message: trafficData?.uploadMsg ?? "",
362
child: Wrap(
363
crossAxisAlignment: WrapCrossAlignment.center,
364
@@ -371,7 +371,7 @@ class _DashboardState extends State<Dashboard> with WindowListener {
371
),
372
SizedBox(width: 8),
373
374
- message: trafficData?.downloadMsg,
+ message: trafficData?.downloadMsg ?? "",
375
376
377
0 commit comments