Skip to content

Commit

Permalink
Fixes #1193 - Set job log created date to use ISO format in JobResult…
Browse files Browse the repository at this point in the history
… detail view (#1199)
  • Loading branch information
jathanism committed Dec 21, 2021
1 parent f4adc5d commit 3312e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautobot/extras/tables.py
Expand Up @@ -389,7 +389,7 @@ def log_entry_color_css(record):


class JobLogEntryTable(BaseTable):
created = tables.DateTimeColumn(verbose_name="Time", format=settings.SHORT_DATETIME_FORMAT)
created = tables.DateTimeColumn(verbose_name="Time", format="Y-m-d H:i:s.u")
grouping = tables.Column()
log_level = tables.Column(
verbose_name="Level",
Expand Down

0 comments on commit 3312e2b

Please sign in to comment.