Skip to content
Snippets Groups Projects
Commit ebb8ccb1 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

write full date in history list

parent 6b303602
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ import { ErrorDialogComponent } from './shared/error-dialog/error-dialog.compone ...@@ -41,7 +41,7 @@ import { ErrorDialogComponent } from './shared/error-dialog/error-dialog.compone
provide: HTTP_INTERCEPTORS, provide: HTTP_INTERCEPTORS,
useClass: ErrorInterceptor, useClass: ErrorInterceptor,
multi: true, multi: true,
}, }
], ],
bootstrap: [AppComponent], bootstrap: [AppComponent],
}) })
......
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
</div> </div>
<div class='border-top mt-3 pt-3' *ngFor='let history of service.history; TrackBy: trackById'> <div class='border-top mt-3 pt-3' *ngFor='let history of service.history; TrackBy: trackById'>
<div> <div>
{{history.createdAt}} {{history.createdAt | date: "full"}}
</div> </div>
<div> <div>
{{history.description}} {{history.description}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment