Skip to content

Commit 25813ab

Browse files
committed
fix: add moduleId to components with styleUrls
1 parent a4eb409 commit 25813ab

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Diff for: app/list-picker/list-picker.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Component,Input, ChangeDetectionStrategy } from '@angular/core';
22

33
@Component({
4+
moduleId: module.id,
45
selector: 'list',
56
styleUrls: ['./list-picker.css'],
67
template: `

Diff for: app/list-view/list-view-page.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Component, Input, ChangeDetectionStrategy } from '@angular/core';
22

33
@Component({
4+
moduleId: module.id,
45
selector: 'list-test',
56
styleUrls: ['./list-view-page.css'],
67
template: `

Diff for: app/router/router-outlet.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {FirstComponent} from "../components/first.component";
33
import {SecondComponent} from "../components/second.component";
44

55
@Component({
6+
moduleId: module.id,
67
selector: 'navigation-test',
78
styleUrls: ['./router-outlet.css'],
89
template: `

Diff for: app/template/app.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {Component} from "@angular/core";
22

33
@Component({
4+
moduleId: module.id,
45
selector: "my-app",
56
styles: ["button {color: lime}"],
67
styleUrls: ["./app.component.css"],

0 commit comments

Comments
 (0)