chore: update indentation and small improvements

This commit is contained in:
Tony133
2025-12-18 10:32:22 +01:00
parent 2b85922ac3
commit 6f5d0350a1
3 changed files with 5 additions and 3 deletions

View File

@@ -10,5 +10,5 @@ import { DatePipe } from '@angular/common';
imports: [DatePipe],
})
export class FooterComponent {
currentDate = Date.now();
public currentDate = Date.now();
}

View File

@@ -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,

View File

@@ -12,7 +12,8 @@ if (environment.production) {
bootstrapApplication(AppComponent, {
providers: [
provideZoneChangeDetection(),importProvidersFrom(BrowserModule, RoutingModule),
provideZoneChangeDetection(),
importProvidersFrom(BrowserModule, RoutingModule),
provideHttpClient(withInterceptorsFromDi()),
provideAnimations(),
],