From 7c8938a42488d1f567d1d64cc55bf2b2eaa26c60 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Fri, 18 Nov 2016 07:53:41 -0800 Subject: [PATCH] example(pipes): Dart e2e fix (#2825) Match TS example and only bootstrap AppComponent. --- public/docs/_examples/pipes/dart/web/main.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/docs/_examples/pipes/dart/web/main.dart b/public/docs/_examples/pipes/dart/web/main.dart index 3266c05644..dddf5d144d 100644 --- a/public/docs/_examples/pipes/dart/web/main.dart +++ b/public/docs/_examples/pipes/dart/web/main.dart @@ -1,9 +1,7 @@ import 'package:angular2/platform/browser.dart'; import 'package:pipe_examples/app_component.dart'; -import 'package:pipe_examples/hero_birthday1_component.dart'; -main() { +void main() { bootstrap(AppComponent); - bootstrap(HeroBirthdayComponent); }