migration

This commit is contained in:
_Bastler
2022-01-21 22:38:31 +01:00
parent 5cf6230005
commit 578e6e6981
36 changed files with 1473 additions and 1012 deletions
+4 -2
View File
@@ -6,7 +6,7 @@ import { I18nService } from './../../services/i18n.service';
@Component({
selector: 'app-html',
templateUrl: './html.component.html',
styleUrls: ['./html.component.scss']
styleUrls: [ './html.component.scss' ]
})
export class HtmlComponent implements OnInit {
@@ -26,7 +26,9 @@ export class HtmlComponent implements OnInit {
{
headers: headers,
responseType: 'text'
}).subscribe(response => this.htmlTemplate = response);
}).subscribe({
next: (response) => this.htmlTemplate = response
});
}
}