Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
legalcodes committed Sep 24, 2019
commit 91cbf66e3fa7cd39b280765d8446bf8b34aa42e1
2 changes: 1 addition & 1 deletion src/_packages/dartpad_picker/web/dartpad_picker_main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void main() {
var select = querySelector('#dartpad-select');

var snippets = [
Snippet('Spinning flutter', spinning_logo),
Snippet('Spinning Flutter', spinning_logo),
Snippet('Fibonacci', fibonacci),
Snippet('Counter', counter),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My only concern with this and the todo examples is that they require Chrome 77 to work well ( dart-lang/dart-pad#1223).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, I think that just before or after the first DartPad instance, there should be a warning about the version of Chrome that you need.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, as discussed we'll:

  1. Wait until 77
  2. add a warning about the Chrome version

];
Expand Down