Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(angular): fix invalid style option for nx welcome component when …
…generating an application (#9173)
  • Loading branch information
leosvelperez committed Mar 3, 2022
1 parent 8afc351 commit b80de97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/angular/src/generators/application/application.ts
Expand Up @@ -86,9 +86,10 @@ export async function applicationGenerator(
await angularComponentSchematic(host, {
name: 'NxWelcome',
inlineTemplate: true,
inlineStyle: true,
prefix: options.prefix,
skipTests: true,
style: 'none',
style: options.style,
flat: true,
viewEncapsulation: 'None',
project: options.name,
Expand Down

0 comments on commit b80de97

Please sign in to comment.