Fixed inventory host status to work with pop-over changes.

This commit is contained in:
Chris Houseknecht
2014-03-22 21:17:24 -04:00
parent f4efad714f
commit 65aae82827
5 changed files with 11 additions and 7 deletions

View File

@@ -113,10 +113,12 @@ angular.module('HostsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', 'H
}
html += "</tbody>\n";
html += "</table>\n";
html += "<div class=\"popover-footer\"><span class=\"key\">esc</span> or click to close</div>\n";
}
else {
title = 'No job data';
html = '<p>No recent job data available for this host.</p>';
html += "<div class=\"popover-footer\"><span class=\"key\">esc</span> or click to close</div>\n";
}
}
else if (host.has_active_failures === false && host.last_job === null) {