diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-02-17 14:01:30 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-02-17 14:01:30 +0000 |
commit | 534d480993db74a728bc3a91ce00e00504d840cb (patch) | |
tree | 25b5df6c135e32dbc0465caa3b418725be455ee6 /app/views/projects/issues | |
parent | 522eb17923271726a5b1ad588c6e5898d498752b (diff) | |
parent | c569f8b4800424704691925f9e39b415b5eca33c (diff) | |
download | gitlab-ce-534d480993db74a728bc3a91ce00e00504d840cb.tar.gz |
Merge branch 'fix/13517-impossible-subsequent-issuable-edits-in-sidebar' into 'master'
Fix a bug preventing from doing subsequent edits in any Issuable sidebar
Fixes #13517. Fixes #12572.
### Issue
![impossible-subsequent-issue-edits-in-sidebar](/uploads/bd45c0effb46848641932d9cd38d3fe2/impossible-subsequent-issue-edits-in-sidebar.gif)
---
### Merge request
![impossible-subsequent-mr-edits-in-sidebar](/uploads/b4e1e3e93df4ac0a3d962df8b6139de9/impossible-subsequent-mr-edits-in-sidebar.gif)
/cc @jschatz1 @sytses
See merge request !2848
Diffstat (limited to 'app/views/projects/issues')
-rw-r--r-- | app/views/projects/issues/update.js.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/issues/update.js.haml b/app/views/projects/issues/update.js.haml index a54733883b4..986d8c220db 100644 --- a/app/views/projects/issues/update.js.haml +++ b/app/views/projects/issues/update.js.haml @@ -1,3 +1,3 @@ $('aside.right-sidebar')[0].outerHTML = "#{escape_javascript(render 'shared/issuable/sidebar', issuable: @issue)}"; $('aside.right-sidebar').effect('highlight'); -new Issue();
\ No newline at end of file +new IssuableContext(); |