mirror of
https://github.com/nestjs/docs.nestjs.com.git
synced 2026-02-25 22:15:07 +00:00
chore: update indentation and small improvements
This commit is contained in:
@@ -10,5 +10,5 @@ import { DatePipe } from '@angular/common';
|
||||
imports: [DatePipe],
|
||||
})
|
||||
export class FooterComponent {
|
||||
currentDate = Date.now();
|
||||
public currentDate = Date.now();
|
||||
}
|
||||
|
||||
@@ -19,7 +19,8 @@ import { MenuItemComponent } from './menu-item/menu-item.component';
|
||||
export class MenuComponent implements OnInit {
|
||||
@Input()
|
||||
isSidebarOpened = true;
|
||||
readonly items = [
|
||||
|
||||
public readonly items = [
|
||||
{
|
||||
title: 'Introduction',
|
||||
isOpened: false,
|
||||
|
||||
@@ -12,7 +12,8 @@ if (environment.production) {
|
||||
|
||||
bootstrapApplication(AppComponent, {
|
||||
providers: [
|
||||
provideZoneChangeDetection(),importProvidersFrom(BrowserModule, RoutingModule),
|
||||
provideZoneChangeDetection(),
|
||||
importProvidersFrom(BrowserModule, RoutingModule),
|
||||
provideHttpClient(withInterceptorsFromDi()),
|
||||
provideAnimations(),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user