diff options
author | Bryce Johnson <bryce@gitlab.com> | 2016-09-19 16:48:20 +0200 |
---|---|---|
committer | Bryce Johnson <bryce@gitlab.com> | 2016-10-05 11:25:03 +0200 |
commit | 8fa3e576a6afa4c424b0e476d6213890491c97c1 (patch) | |
tree | cdae34b6e02b2b0eccaff1806e1638c47d4f8056 | |
parent | 6fc9118cddf102e18b00156c2892450960ee2d17 (diff) | |
download | gitlab-ce-8fa3e576a6afa4c424b0e476d6213890491c97c1.tar.gz |
Remove unneeded semicolon.
-rw-r--r-- | app/assets/javascripts/user_tabs.js.es6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/user_tabs.js.es6 b/app/assets/javascripts/user_tabs.js.es6 index 7cb38b8ec07..63bce0a6f6f 100644 --- a/app/assets/javascripts/user_tabs.js.es6 +++ b/app/assets/javascripts/user_tabs.js.es6 @@ -156,7 +156,7 @@ content on the Users#show page. url: new_state }, document.title, new_state); return new_state; - }; + } } global.UserTabs = UserTabs; })(window.gl || (window.gl = {})); |