mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 05:29:26 -02:30
Merge pull request #2762 from mabashian/enter-search-error
Pass the event when calling addTag() on enter
This commit is contained in:
@@ -23,7 +23,7 @@ export default
|
|||||||
.bind('keypress', function (e) {
|
.bind('keypress', function (e) {
|
||||||
var code = e.keyCode || e.which;
|
var code = e.keyCode || e.which;
|
||||||
if (code === 13) {
|
if (code === 13) {
|
||||||
scope.addTag();
|
scope.addTag(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user