Skip to content
2 changes: 1 addition & 1 deletion playground/frontend/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import 'package:playground/configure_nonweb.dart'
if (dart.library.html) 'package:playground/configure_web.dart';
import 'package:playground/playground_app.dart';

void main() async {
void main() {
findSystemLocale();
configureApp();
runApp(const PlaygroundApp());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ class CodeRepository {
final log = responses[1];
final error = responses[2];
return RunCodeResult(
pipelineUuid: pipelineUuid,
status: status,
output: prevOutput + output.output + error.output,
log: prevLog + log.output,
Expand Down
5 changes: 5 additions & 0 deletions playground/frontend/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Apache Beam Playground">

<!-- Fonts section -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Source+Code+Pro&family=Source+Sans+Pro:wght@400;700&display=swap" rel="stylesheet">

<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
Expand Down