This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 07378ce [BEAM-13785] playground - enable scio sdk
new 879638a Merge pull request #16847 from [BEAM-13785] [Playground]
enable SCIO sdk
07378ce is described below
commit 07378ce635da249e753191ac3a55ee741f11ed7f
Author: Aydar Farrakhov <[email protected]>
AuthorDate: Mon Feb 14 15:43:44 2022 +0300
[BEAM-13785] playground - enable scio sdk
---
playground/frontend/lib/modules/sdk/components/sdk_selector.dart | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/playground/frontend/lib/modules/sdk/components/sdk_selector.dart
b/playground/frontend/lib/modules/sdk/components/sdk_selector.dart
index 72c48f2..0150956 100644
--- a/playground/frontend/lib/modules/sdk/components/sdk_selector.dart
+++ b/playground/frontend/lib/modules/sdk/components/sdk_selector.dart
@@ -32,7 +32,7 @@ typedef SetExample = void Function(ExampleModel example);
const kEmptyExampleName = 'Catalog';
const double kWidth = 150;
-const double kHeight = 137;
+const double kHeight = 172;
class SDKSelector extends StatelessWidget {
final SDK sdk;
@@ -58,10 +58,7 @@ class SDKSelector extends StatelessWidget {
createDropdown: (close) => Column(
children: [
const SizedBox(height: kMdSpacing),
- // SCIO is not supported yet
- ...SDK.values
- .where((element) => element != SDK.scio)
- .map((SDK value) {
+ ...SDK.values.map((SDK value) {
return SizedBox(
width: double.infinity,
child: Consumer<ExampleState>(