Skip to content

Commit 68a3da9

Browse files
authored
refactor: Replace InkWell with ElevatedButton for build log link and … (#4964)
Fix LUCI log link Fix: flutter/flutter#176983
1 parent 8009533 commit 68a3da9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dashboard/lib/views/presubmit_view.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,10 +423,10 @@ class _LogViewerPaneState extends State<_LogViewerPane> {
423423
),
424424
Padding(
425425
padding: const EdgeInsets.all(24.0),
426-
child: InkWell(
427-
onTap: selectedCheck.buildNumber == null
426+
child: ElevatedButton(
427+
onPressed: selectedCheck.buildNumber == null
428428
? null
429-
: () => launchUrl(
429+
: () async => await launchUrl(
430430
Uri.parse(
431431
generateBuildLogUrl(
432432
buildName: selectedCheck.buildName,

0 commit comments

Comments
 (0)