damondouglas commented on a change in pull request #16373:
URL: https://github.com/apache/beam/pull/16373#discussion_r787076397
##########
File path:
playground/frontend/lib/modules/editor/components/editor_textarea.dart
##########
@@ -51,6 +60,7 @@ class EditorTextArea extends StatefulWidget {
class _EditorTextAreaState extends State<EditorTextArea> {
CodeController? _codeController;
+ FocusNode focusNode = FocusNode();
Review comment:
@miamihotline not critical but in dart we do not need to repeat the
class name. This works as well and is probably more clear: `var focusNode =
FocusNode()`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]