diff --git a/dashboard/lib/views/presubmit_view.dart b/dashboard/lib/views/presubmit_view.dart index a838712b3..0c6d869aa 100644 --- a/dashboard/lib/views/presubmit_view.dart +++ b/dashboard/lib/views/presubmit_view.dart @@ -423,10 +423,10 @@ class _LogViewerPaneState extends State<_LogViewerPane> { ), Padding( padding: const EdgeInsets.all(24.0), - child: InkWell( - onTap: selectedCheck.buildNumber == null + child: ElevatedButton( + onPressed: selectedCheck.buildNumber == null ? null - : () => launchUrl( + : () async => await launchUrl( Uri.parse( generateBuildLogUrl( buildName: selectedCheck.buildName,