mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merged PR 995: #2486 Erscheinungsdatum führende Null bei Format
#2486 Erscheinungsdatum führende Null bei Format Related work items: #2486
This commit is contained in:
committed by
Lorenz Hilpert
parent
d059646ebe
commit
0cfeabb0f2
@@ -78,7 +78,7 @@ export class ArticleDetailsComponent implements OnInit, OnDestroy {
|
||||
return this._datePipe.transform(date, 'y');
|
||||
}
|
||||
|
||||
return this._datePipe.transform(date, 'd. MMMM y');
|
||||
return this._datePipe.transform(date, 'dd. MMMM y');
|
||||
})
|
||||
);
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ export class SearchResultItemComponent {
|
||||
return this._datePipe.transform(date, 'y');
|
||||
}
|
||||
|
||||
return this._datePipe.transform(date, 'd. MMMM y');
|
||||
return this._datePipe.transform(date, 'dd. MMMM y');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user