diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-05 15:36:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-05 15:36:00 +0100 |
commit | f35b20b04212b2085d44d34933c04c4fd30d3a08 (patch) | |
tree | 30efeadd293fed2b656c373decf625927744130a /public | |
parent | Redirects for renamed repos (#807) (diff) | |
download | forgejo-f35b20b04212b2085d44d34933c04c4fd30d3a08.tar.xz forgejo-f35b20b04212b2085d44d34933c04c4fd30d3a08.zip |
track issue title changes (#841)
Diffstat (limited to 'public')
-rw-r--r-- | public/js/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/index.js b/public/js/index.js index 5f278ab011..487f812d1d 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -444,6 +444,7 @@ function initRepository() { function (data) { $editInput.val(data.title); $issueTitle.text(data.title); + location.reload(); }); return false; }); |