Don't show dbdata backups as restorable from gui

This commit is contained in:
Arjan H
2021-05-22 18:19:10 +02:00
parent 1e76b3a3d8
commit 033b4a0e4f

View File

@@ -711,6 +711,12 @@
}
});
$(".backup-restore").each(function() {
if ($(this).parent().parent().find("td").eq(0).text().startsWith("dbdata-") ) {
$(this).addClass("hidden");
}
});
$("#root-details").on('show.bs.collapse', function() {
$("#root-show").hide();
$("#root-hide").removeClass("hidden").show();