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:
authorBryce Johnson <bryce@gitlab.com>2016-10-10 17:34:57 +0300
committerBryce Johnson <bryce@gitlab.com>2016-10-15 09:28:54 +0300
commit23fd1f1630f4977ecc452ede086eaebfd836b978 (patch)
treec32e74158d5fdabea57bc03291ac12626a1bfba7 /app/views/devise/confirmations
parentf141cdb3dddd16c729a828838e907473132a3a18 (diff)
Use Ruby 1.9 syntax in tab_single def and usage.
Diffstat (limited to 'app/views/devise/confirmations')
-rw-r--r--app/views/devise/confirmations/new.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/confirmations/new.html.haml b/app/views/devise/confirmations/new.html.haml
index 443a316c6e2..5d25dd398d6 100644
--- a/app/views/devise/confirmations/new.html.haml
+++ b/app/views/devise/confirmations/new.html.haml
@@ -1,4 +1,4 @@
-= render 'devise/shared/tab_single', { :tab_title => 'Resend confirmation instructions' }
+= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
.login-box
.login-body
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: 'show-gl-field-errors' }) do |f|