diff --git a/Maintenance/test_handling/Summary_Script.js b/Maintenance/test_handling/Summary_Script.js index dfac558e195..90a87da08e5 100644 --- a/Maintenance/test_handling/Summary_Script.js +++ b/Maintenance/test_handling/Summary_Script.js @@ -179,23 +179,25 @@ function platformContainer(platforms) { $tplTable.toggle(); } }).appendTo($container); - const $tplTable = $('
| ', { class: 'sortable', 'data-sort': 0, text: 'Library' }).appendTo($headerRow); - $(' | ', { class: 'sortable', 'data-sort': 1, text: 'Version' }).appendTo($headerRow); - $(' | ', { class: 'sortable', 'data-sort': 2, text: 'Status' }).appendTo($headerRow); + $(' | ', { text: 'Library' }).appendTo($headerRow); + $(' | ', { text: 'Version' }).appendTo($headerRow); $headerRow.appendTo($thead); tplArray.forEach(tpl => { $(' |
|---|---|---|---|---|
| ').html(`${tpl.name}`), $(' | ').text(tpl.version || 'N/A'), - $(' | ').text(tpl.status) ).appendTo($tbody); }); - initializeTableSorting($thead, $tbody); - $thead.find('.sortable').first().click(); $('.tpl-link').click(function(event) { event.preventDefault(); const tplName = $(this).data('tpl'); @@ -268,7 +270,6 @@ function showVersionsForTPL(tplName) { | ||
| ${platform.name} | ${matchingTPL.version || 'N/A'} | -${matchingTPL.status} | ||
| No versions of this TPL found across platforms. | ||||