mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
681 B
25 lines
681 B
import { Component, OnDestroy } from '@angular/core';
|
|
import { MarkdownModule } from 'ngx-markdown';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Component({
|
|
imports: [MarkdownModule, NgxSkeletonLoaderModule],
|
|
selector: 'gf-changelog-page',
|
|
styleUrls: ['./changelog-page.scss'],
|
|
templateUrl: './changelog-page.html'
|
|
})
|
|
export class GfChangelogPageComponent implements OnDestroy {
|
|
public isLoading = true;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
public onLoad() {
|
|
this.isLoading = false;
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
}
|
|
|