Skip to content

Commit

Permalink
Fixes #36882 - errata's issued and updated times shouldn't be changed…
Browse files Browse the repository at this point in the history
… to local timezone (#10785)

(cherry picked from commit fcc0dc15546c9cd189790ea16927eef05c3c648f)
  • Loading branch information
sjha4 authored Nov 2, 2023
1 parent 0a4d71d commit e0145f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ <h4 translate>{{ errata.title }}</h4>
<dd>{{ errata.severity | errataSeverity }}</dd>

<dt translate>Issued</dt>
<dd><long-date-time date="errata.issued" /></dd>
<dd>{{ errata.issued }}</dd>

<dt translate>Last Updated On</dt>
<dd><long-date-time date="errata.updated" /></dd>
<dd>{{ errata.updated }}</dd>

<dt translate>Reboot Suggested?</dt>
<dd>{{ errata.reboot_suggested | booleanToYesNo }}</dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<span translate>{{ errata.hosts_applicable_count || 0 }} Applicable, </span>
<span translate>{{ errata.hosts_available_count || 0 }} Installable</span>
</td>
<td bst-table-cell><long-date-time date="errata.updated" /></td>
<td bst-table-cell>{{ errata.updated }}</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit e0145f8

Please sign in to comment.