Commit 214b6495 authored by Clement Ho's avatar Clement Ho

Remove unnecessary stopPropagation

parent d8b8b9c8
...@@ -115,7 +115,6 @@ ...@@ -115,7 +115,6 @@
} }
clearSearch(e) { clearSearch(e) {
e.stopPropagation();
e.preventDefault(); e.preventDefault();
this.filteredSearchInput.value = ''; this.filteredSearchInput.value = '';
...@@ -135,7 +134,6 @@ ...@@ -135,7 +134,6 @@
checkForEnter(e) { checkForEnter(e) {
if (e.keyCode === 13) { if (e.keyCode === 13) {
e.stopPropagation();
e.preventDefault(); e.preventDefault();
// Prevent droplab from opening dropdown // Prevent droplab from opening dropdown
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment