Skip to content

Commit

Permalink
Use ToLocalTime
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaqueuCavalcante committed Oct 11, 2024
1 parent 996defa commit 15819b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Columns>
<PropertyColumn Property="x => x.Title" Title="Título" />
<PropertyColumn Property="x => x.Description" Title="Descrição" />
<PropertyColumn Property="x => x.CreatedAt" Title="Criada em" />
<PropertyColumn Property="x => x.CreatedAt.ToLocalTime()" Title="Criada em" />
</Columns>
<NoRecordsContent>
@(GetNotFoundMessage())
Expand Down
2 changes: 1 addition & 1 deletion Front/Pages/Academic/AcademicNotificationsPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<Columns>
<PropertyColumn Property="x => x.Title" Title="Título" />
<PropertyColumn Property="x => x.Description" Title="Descrição" />
<PropertyColumn Property="x => x.CreatedAt.Format()" Title="Criada em" />
<PropertyColumn Property="x => x.CreatedAt.ToLocalTime().Format()" Title="Criada em" />
<PropertyColumn Property="x => x.Target.GetDescription()" Title="Audiência" />
<PropertyColumn Property="x => x.Views" Title="Visualizações" />
</Columns>
Expand Down

0 comments on commit 15819b1

Please sign in to comment.