_updateFields js should start with first list item position of 1, not 0 #1

Open
aepstein wants to merge 16 commits from aepstein/patch-1 into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 00643beceb - Show all commits

View File

@ -52,7 +52,7 @@
console.log($(element).find($(element).data('fieldSearch')))
$(element).find($(element).data('fieldSearch')).each(function(index, element) {
$(element).val(index);
$(element).val(index + 1);
});
},
setup: function() {