Chore: update to Angular 20 (#10273)

This commit is contained in:
shamoon 2025-06-27 14:06:40 -07:00 committed by GitHub
parent dfad3c4d8e
commit 958f98d7e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
146 changed files with 2662 additions and 2687 deletions

View file

@ -6,6 +6,7 @@ import {
OnDestroy,
OnInit,
Output,
inject,
} from '@angular/core'
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
import {
@ -63,7 +64,9 @@ export enum RelativeDate {
export class DatesDropdownComponent implements OnInit, OnDestroy {
public popperOptions = pngxPopperOptions
constructor(settings: SettingsService) {
constructor() {
const settings = inject(SettingsService)
this.datePlaceHolder = settings.getLocalizedDateInputFormat()
}