|
|
@ -1,5 +1,4 @@ |
|
|
import { Component } from '@angular/core'; |
|
|
import { Component } from '@angular/core'; |
|
|
import { Subject } from 'rxjs'; |
|
|
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
@Component({ |
|
|
host: { class: 'page' }, |
|
|
host: { class: 'page' }, |
|
|
@ -8,11 +7,4 @@ import { Subject } from 'rxjs'; |
|
|
styleUrls: ['./i18n-page.scss'], |
|
|
styleUrls: ['./i18n-page.scss'], |
|
|
templateUrl: './i18n-page.html' |
|
|
templateUrl: './i18n-page.html' |
|
|
}) |
|
|
}) |
|
|
export class GfI18nPageComponent { |
|
|
export class GfI18nPageComponent {} |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|
|
|
|
|
|
|
|
|
public ngOnDestroy() { |
|
|
|
|
|
this.unsubscribeSubject.next(); |
|
|
|
|
|
this.unsubscribeSubject.complete(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|