mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
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:
@@ -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()
|
||||
}
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user