Skip to content

Commit c638fb6

Browse files
committed
fix(client:footer): fix hardcoded template & style extentions
fixes #2421
1 parent 1a2d356 commit c638fb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: templates/app/client/components/footer/footer.component.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component } from '@angular/core';
22

33
@Component({
44
selector: 'footer',
5-
template: require('./footer.html'),
6-
styles: [require('./footer.scss')]
5+
template: require('./footer.<%=templateExt%>'),
6+
styles: [require('./footer.<%=styleExt%>')]
77
})
88
export class FooterComponent {}

0 commit comments

Comments
 (0)