Improve resource scanning flow (#68)

* List supported resources for scanners

* Don't warn on scanner discovery commands

* Use scanner-to-resource map

* Save changes

* Scan result tabs

* Own table render for Checkov

* Scannable manifest flag for scanners
This commit is contained in:
Andrey Pokhilko
2022-11-06 15:56:34 +00:00
committed by GitHub
parent 612352d69f
commit 671fa949df
16 changed files with 191 additions and 78 deletions

View File

@@ -350,17 +350,3 @@ $("#btnAddRepository").click(function () {
setHashParam("section", "repository")
window.location.reload()
})
$("#inputSearch").keyup(function() {
var val = $(this).val().toLowerCase();
$(".charts li").hide()
$(".charts li").each(function(){
var chartNameElem = this.firstElementChild
var chartName = $(chartNameElem).text().toLowerCase()
if(chartName.indexOf(val) != -1) {
$(this).show()
}
})
})