Fixed the column hiding, Added the HorillaDb file in gitignore + using columns instead of rows (#605)

* Added the HorillaDb file in gitignore + using columns instead of rows in actions tab

* Fixed the typo which was hiding the columns in request table in work type reqest

* Fixed the typo which was hiding the columns in request table in work type reqest

* payslip table should have this as the first parameter for toggleColumns as we are passing id not data attribute , previous PR was wrong

* Fix for column toggling issue

* toggling issue fixed
This commit is contained in:
aditya singh rawat
2025-03-21 12:22:15 +05:30
committed by GitHub
parent aa4919562d
commit 46607e65e9
6 changed files with 5 additions and 8 deletions

View File

@@ -246,10 +246,9 @@
});
});
// toggle columns //
toggleColumns("payslip_column_tab", "payslipCells")
toggleColumns("payslip-column-table", "payslipCells")
localStoragepayslipCells = localStorage.getItem("payslip_column_tab")
if (!localStoragepayslipCells) {
$("#payslipCells").find("[type=checkbox]").prop("checked", true)
}
$("[type=checkbox]").change()
</script>