-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Renamed angular root node to avoid name collisions #2657
Conversation
Angular CLI also uses `app-root` as the root node name and this could lead to weird bugs. Signed-off-by: Carlos Vega <[email protected]>
@@ -13,6 +13,6 @@ | |||
<%= htmlWebpackPlugin.options.data.previewHead %> | |||
</head> | |||
<body> | |||
<app-root></app-root> | |||
<storybook-dynamic-app-root></storybook-dynamic-app-roott> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo
Codecov Report
@@ Coverage Diff @@
## master #2657 +/- ##
=======================================
Coverage 34.34% 34.34%
=======================================
Files 389 389
Lines 8750 8750
Branches 898 898
=======================================
Hits 3005 3005
Misses 5156 5156
Partials 589 589
Continue to review full report at Codecov.
|
Signed-off-by: Carlos Vega <[email protected]>
…orybook into renaming-angular-root-node
Signed-off-by: Carlos Vega <[email protected]>
Signed-off-by: Carlos Vega <[email protected]>
…orybook into renaming-angular-root-node
Renamed angular root node to avoid name collisions
Angular CLI also uses
app-root
as the root node name and this could lead to weird bugs.Issue: #2647
What I did
Renamed the angular root node. This is not directly related to the issue linked (the cause was different) but we should rename the node anyway.
How to test