Skip to content

Commit

Permalink
Fixes mislabeling of scheduled jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisjbell authored and jhunt committed Jul 11, 2018
1 parent b35961e commit e3320c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web2/htdocs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1529,8 +1529,8 @@ <h2>Timeline</h2>
[[ } ]]
[[ if (task.archive) { ]]<li class="tag">[[= task.type ]]</li>[[ } ]]
[[ if (task.type == "backup") { ]]
[[ if (task.owner == "") { ]]
<li class="desc">[[= maybe(task.archive.schedule, 'Scheduled Backup') ]]</li>
[[ if (task.owner == "system") { ]]
<li class="desc">[[= maybe(task.archive && task.archive.schedule, 'Scheduled Backup') ]]</li>
<li class="meta">run automatically per job schedule at [[= strftime("%l:%M%P", task.requested_at) ]]</li>
[[ } else { ]]
<li class="desc">Ad Hoc Backup</li>
Expand Down

0 comments on commit e3320c1

Please sign in to comment.