@@ -10,14 +10,14 @@ import { SidenavComponent } from "../sidenav/sidenav.component";
10
10
import { SearchDialogComponent } from "../../partials/search-dialog/search-dialog.component" ;
11
11
import { FooterComponent } from "../footer/footer.component" ;
12
12
import { ThemeService } from "../../services/theme.service" ;
13
+ import { SanitizerHtmlPipe } from "../../pipes/sanitizer-html.pipe" ;
14
+ import { YoutubeVideoEmbedDirective } from "../../directives/youtube-video-embed.directive" ;
15
+ import { ViewportScroller } from "@angular/common" ;
13
16
14
17
import { TagModule } from "primeng/tag" ;
15
18
import { ToolbarModule } from "primeng/toolbar" ;
16
19
import { ButtonModule } from "primeng/button" ;
17
20
import { InputSwitchModule } from "primeng/inputswitch" ;
18
- import { SanitizerHtmlPipe } from "../../pipes/sanitizer-html.pipe" ;
19
- import { YoutubeVideoEmbedDirective } from "../../directives/youtube-video-embed.directive" ;
20
- import { ViewportScroller } from "@angular/common" ;
21
21
import { AvatarModule } from 'primeng/avatar' ;
22
22
import { AvatarGroupModule } from 'primeng/avatargroup' ;
23
23
@@ -63,7 +63,7 @@ export class PostDetailsComponent implements OnInit, OnDestroy {
63
63
@Input ( { required : true } ) postSlug ! : string ;
64
64
65
65
ngOnInit ( ) : void {
66
- this . scroller . scrollToPosition ( [ 0 , 0 ] ) ;
66
+ this . scroller . scrollToPosition ( [ 0 , 0 ] ) ;
67
67
this . blogURL = this . blogService . getBlogURL ( ) ;
68
68
this . querySubscription = this . blogService
69
69
. getBlogInfo ( this . blogURL )
0 commit comments