When in a submission and searching for a card. It would be nice to disable the enter key for the quick search. It could just be me, but I usually hit enter after typing a name to execute the search. This search does it “real” time and hitting enter activates the save button. You could just do <input type="text" onkeypress="if (event.which == 13) return false;"> but I don’t know what code you are using for the search if that’s even possible.