diff options
author | Fatih Acet <acetfatih@gmail.com> | 2017-01-31 21:49:46 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2017-01-31 21:49:46 +0000 |
commit | 790b662903353c2b85d3a5cc9bb3d14a2a52ff88 (patch) | |
tree | 4c83d6358f5958a7abe44a093e238571a56f3e17 /app | |
parent | 4246c6c2b5266f3142b20c47c491f747e31fe7b5 (diff) | |
parent | 4840c682414aa2e7d57fa6f792405a49709b7dd8 (diff) | |
download | gitlab-ce-790b662903353c2b85d3a5cc9bb3d14a2a52ff88.tar.gz |
Merge branch '27484-environment-show-name' into 'master'
Don't capitalize environment name in show page
Closes #27484
See merge request !8902
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/environments/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/environments/show.html.haml b/app/views/projects/environments/show.html.haml index 6e0d9456900..b23ca109746 100644 --- a/app/views/projects/environments/show.html.haml +++ b/app/views/projects/environments/show.html.haml @@ -5,7 +5,7 @@ %div{ class: container_class } .top-area.adjust .col-md-9 - %h3.page-title= @environment.name.capitalize + %h3.page-title= @environment.name .col-md-3 .nav-controls = render 'projects/environments/terminal_button', environment: @environment |