Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-05-23 20:21:02 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-05-23 20:21:02 +0300
commit2de1109da39a46200e741b5a6643ce7fb1418041 (patch)
treebc1f2d8ff501f081fa1269cacfc88ebaf170693d /app/helpers/tab_helper.rb
parentbc806831e818b6e1ec2d1ae81221126f03c01f11 (diff)
Enable Performance/StartWith cop and fix offenses
Diffstat (limited to 'app/helpers/tab_helper.rb')
-rw-r--r--app/helpers/tab_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/tab_helper.rb b/app/helpers/tab_helper.rb
index 96a83671009..b4b4d804203 100644
--- a/app/helpers/tab_helper.rb
+++ b/app/helpers/tab_helper.rb
@@ -112,7 +112,7 @@ module TabHelper
end
def profile_tab_class
- if controller.controller_path =~ /\Aprofiles/
+ if controller.controller_path.start_with?('profiles')
return 'active'
end