Skip to content

Commit 07c1f19

Browse files
author
pgandhi
committed
[SPARK-21809] : Doing search on keyup instead of Enter
1 parent af83b6e commit 07c1f19

File tree

1 file changed

+1
-3
lines changed
  • core/src/main/resources/org/apache/spark/ui/static

1 file changed

+1
-3
lines changed

core/src/main/resources/org/apache/spark/ui/static/stagepage.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -873,9 +873,7 @@ $(document).ready(function () {
873873
var taskTableSelector = $(taskTable).DataTable(task_conf);
874874
$('#active-tasks-table_filter input').unbind();
875875
$('#active-tasks-table_filter input').bind('keyup', function(e) {
876-
if(e.keyCode == 13) {
877-
taskTableSelector.search( this.value ).draw();
878-
}
876+
taskTableSelector.search( this.value ).draw();
879877
});
880878

881879
var optionalColumns = [11, 12, 13, 14, 15, 16, 17];

0 commit comments

Comments
 (0)