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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 00:08:30 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 00:08:30 +0300
commita64e7a40667471a1a6594df04476b3c99cabbe3c (patch)
tree8f89c98a3c152934bcac96b4976c1a430ffe32c6 /app/helpers/page_layout_helper.rb
parent870dfaa9127e114a6ea2066220760815063fb3de (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers/page_layout_helper.rb')
-rw-r--r--app/helpers/page_layout_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/page_layout_helper.rb b/app/helpers/page_layout_helper.rb
index c0665463706..6f7b2877100 100644
--- a/app/helpers/page_layout_helper.rb
+++ b/app/helpers/page_layout_helper.rb
@@ -80,8 +80,8 @@ module PageLayoutHelper
tags = []
page_card_attributes.each_with_index do |pair, i|
- tags << tag(:meta, property: "twitter:label#{i + 1}", content: pair[0])
- tags << tag(:meta, property: "twitter:data#{i + 1}", content: pair[1])
+ tags << tag.meta(property: "twitter:label#{i + 1}", content: pair[0])
+ tags << tag.meta(property: "twitter:data#{i + 1}", content: pair[1])
end
tags.join.html_safe