Fixed issue#268 - No space at comment on ticket bulk action.
This commit is contained in:
parent
306c4b7017
commit
38250659b6
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,10 @@ class App.TicketOverview extends App.Controller
|
|||
$(window).off 'keydown.overview_navigation'
|
||||
|
||||
listNavigate: (e) =>
|
||||
|
||||
# ignore if focus is in bulk action
|
||||
return if $(e.target).is('textarea, input, select')
|
||||
|
||||
if e.keyCode is 38 # up
|
||||
e.preventDefault()
|
||||
@nudge(e, -1)
|
||||
|
|
Loading…
Reference in a new issue