Skip to content

Commit

Permalink
Remove start date and time column from schedule task table. Fixes #1058
Browse files Browse the repository at this point in the history
  • Loading branch information
Mchakravartula committed Jan 12, 2016
1 parent d9258d5 commit ff6e133
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<tr>
<th scope="col" abbr="Task name">Task name</th>
<th scope="col" abbr="Task type">Type</th>
<th scope="col" abbr="Start date and time">Start date and time</th>
<th scope="col" abbr="Frequency">Frequency</th>
<th scope="col" abbr="Enabled">Enabled</th>
<th scope="col" abbr="Last">Last run</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ ScheduledTasksView = RockstorLayoutView.extend({
html += '(' + JSON.parse(jsonMeta).pool + ')';
}
html += '</td>';
html += '<td>' + moment(t.get('ts')).format(RS_DATE_FORMAT) + '</td>';
html += '<td>' + prettyCron.toString(t.get('crontab')) + '</td>';
html += '<td>';
if (t.get('enabled')) {
Expand Down

0 comments on commit ff6e133

Please sign in to comment.