Skip to content
Snippets Groups Projects
Commit 7e643ec7 authored by Ruben Bimberg's avatar Ruben Bimberg :computer:
Browse files

Fix type

parent 5f2d68b1
No related merge requests found
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { MatDialogRef } from '@angular/material/dialog'; import { MatDialogRef } from '@angular/material/dialog';
import { DomSanitizer, SafeScript } from '@angular/platform-browser'; import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
@Component({ @Component({
selector: 'app-imprint', selector: 'app-imprint',
...@@ -10,7 +10,7 @@ import { DomSanitizer, SafeScript } from '@angular/platform-browser'; ...@@ -10,7 +10,7 @@ import { DomSanitizer, SafeScript } from '@angular/platform-browser';
export class ImprintComponent implements OnInit { export class ImprintComponent implements OnInit {
deviceType: string; deviceType: string;
currentLang: string; currentLang: string;
safeURL: SafeScript; safeURL: SafeResourceUrl;
constructor(private dialogRef: MatDialogRef<ImprintComponent>, constructor(private dialogRef: MatDialogRef<ImprintComponent>,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment