Feature #2 : Jenis Legalitas jaminan

This commit is contained in:
Daeng Deni Mardaeni
2024-08-11 14:22:51 +07:00
parent bc78cf3ea9
commit 58239883ec
12 changed files with 554 additions and 40 deletions

View File

@@ -140,7 +140,7 @@
// Custom search functionality
searchInput.addEventListener('input', function () {
const searchValue = this.value.trim();
if (searchValue.length > 3) {
if (searchValue.length > 2) {
dataTable.search(searchValue, true);
}
});