mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
simplify date value format
This commit is contained in:
parent
3d0a26fdb1
commit
7396e4c326
@ -53,17 +53,11 @@ export class DateComponent
|
|||||||
}
|
}
|
||||||
|
|
||||||
onSuggestionClick(dateString: string) {
|
onSuggestionClick(dateString: string) {
|
||||||
const parsedNgDate = this.ngbDateParserFormatter.parse(dateString)
|
const parsedDate = this.ngbDateParserFormatter.parse(dateString)
|
||||||
this.writeValue(this.formatDateAsYYYYMMDD(parsedNgDate))
|
this.writeValue(`${parsedDate.year}-${parsedDate.month}-${parsedDate.day}`)
|
||||||
this.onChange(this.value)
|
this.onChange(this.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
formatDateAsYYYYMMDD(date: NgbDateStruct) {
|
|
||||||
const monthPrefix = date.month > 9 ? '' : '0'
|
|
||||||
const dayPrefix = date.day > 9 ? '' : '0'
|
|
||||||
return `${date.year}-${monthPrefix}${date.month}-${dayPrefix}${date.day}`
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
super.ngOnInit()
|
super.ngOnInit()
|
||||||
this.placeholder = this.settings.getLocalizedDateInputFormat()
|
this.placeholder = this.settings.getLocalizedDateInputFormat()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user