diff --git a/smp-angular/src/app/alert/alert.component.ts b/smp-angular/src/app/alert/alert.component.ts index 7a69f9369e5d2c8fd066d7ce9229723148161d26..8819f705336f227964d989b0e4e21272ff9e1e7e 100644 --- a/smp-angular/src/app/alert/alert.component.ts +++ b/smp-angular/src/app/alert/alert.component.ts @@ -4,7 +4,7 @@ import {AlertService} from "./alert.service"; @Component({ moduleId: module.id, selector: 'alert', - templateUrl: 'alert.component.html', + templateUrl: './alert.component.html', styleUrls: ['./alert.component.css'] }) diff --git a/smp-angular/src/app/alerts/alerts.component.ts b/smp-angular/src/app/alerts/alerts.component.ts index 950ba151b76f845868f298555bad077059751445..16fa5adf43663e8b3c196421adf51ce97c70290e 100644 --- a/smp-angular/src/app/alerts/alerts.component.ts +++ b/smp-angular/src/app/alerts/alerts.component.ts @@ -15,7 +15,7 @@ import {SaveDialogComponent} from "../common/save-dialog/save-dialog.component"; @Component({ moduleId: module.id, - templateUrl: 'alerts.component.html' + templateUrl: './alerts.component.html' }) export class AlertsComponent { diff --git a/smp-angular/src/app/errorlog/errorlog.component.ts b/smp-angular/src/app/errorlog/errorlog.component.ts index 69cb6e79f0e76e4764ee8d65b7190b2cf1ce02cc..b3ea278071c6fa497336896ef56bc677e3784c96 100644 --- a/smp-angular/src/app/errorlog/errorlog.component.ts +++ b/smp-angular/src/app/errorlog/errorlog.component.ts @@ -13,7 +13,7 @@ import { Md2Datepicker } from "md2"; @Component({ moduleId: module.id, - templateUrl: 'errorlog.component.html' + templateUrl: './errorlog.component.html' }) export class ErrorLogComponent implements AfterViewInit { diff --git a/smp-angular/src/app/footer/footer.component.ts b/smp-angular/src/app/footer/footer.component.ts index 998aa9d69c36c62cca9561306659b1d6ad0c6c68..bb9d62be6d09bf56218ee6667c1dda68425ef27b 100644 --- a/smp-angular/src/app/footer/footer.component.ts +++ b/smp-angular/src/app/footer/footer.component.ts @@ -4,7 +4,7 @@ import {DomibusInfo} from "../appinfo/domibusinfo"; @Component({ moduleId: module.id, - templateUrl: 'footer.component.html', + templateUrl: './footer.component.html', selector: 'footer', styleUrls: ['./footer.component.css'] }) diff --git a/smp-angular/src/app/home/home.component.ts b/smp-angular/src/app/home/home.component.ts index 00867c2b7ce0fd126316e3af7263fed26f765963..27dcc33fbf85cacf9c13819ccbc9726850c6d8c8 100644 --- a/smp-angular/src/app/home/home.component.ts +++ b/smp-angular/src/app/home/home.component.ts @@ -5,7 +5,7 @@ import {User} from "../security/user"; @Component({ moduleId: module.id, - templateUrl: 'home.component.html', + templateUrl: './home.component.html', styleUrls: ['./home.component.css'] }) diff --git a/smp-angular/src/app/login/login.component.ts b/smp-angular/src/app/login/login.component.ts index 99da186906ac17afab8757b6461e1bf126bce148..8135a25de77af300702b6a8d8a16334c1fd53275 100644 --- a/smp-angular/src/app/login/login.component.ts +++ b/smp-angular/src/app/login/login.component.ts @@ -10,7 +10,7 @@ import {DefaultPasswordDialogComponent} from "app/security/default-password-dial @Component({ moduleId: module.id, - templateUrl: 'login.component.html' + templateUrl: './login.component.html' }) export class LoginComponent implements OnInit, OnDestroy { diff --git a/smp-angular/src/app/messagefilter/editmessagefilter-form/editmessagefilter-form.component.ts b/smp-angular/src/app/messagefilter/editmessagefilter-form/editmessagefilter-form.component.ts index 69b6cb1eabc5ff85fc1ddb36f7c345f84ecad0c4..1adf9aedd6f08b5743e54c53aed9a8147e6c4e6c 100644 --- a/smp-angular/src/app/messagefilter/editmessagefilter-form/editmessagefilter-form.component.ts +++ b/smp-angular/src/app/messagefilter/editmessagefilter-form/editmessagefilter-form.component.ts @@ -10,7 +10,7 @@ let MAX_LENGTH = 255; @Component({ selector: 'editmessagefilter-form', - templateUrl: 'editmessagefilter-form.component.html' + templateUrl: './editmessagefilter-form.component.html' }) export class EditMessageFilterComponent { diff --git a/smp-angular/src/app/messagefilter/messagefilter.component.ts b/smp-angular/src/app/messagefilter/messagefilter.component.ts index 8fc10a007474b18e1ccf123501dbf4586a5dd24e..e274c4355d6ee80100b91854d3bf4d2194b4107d 100644 --- a/smp-angular/src/app/messagefilter/messagefilter.component.ts +++ b/smp-angular/src/app/messagefilter/messagefilter.component.ts @@ -15,7 +15,7 @@ import {DownloadService} from "../download/download.service"; @Component({ moduleId: module.id, - templateUrl: 'messagefilter.component.html', + templateUrl: './messagefilter.component.html', styleUrls: ['./messagefilter.component.css'] })