Commit 40cc60eb authored by Robert May's avatar Robert May

Correct failures in HAML files

These weren't picked up by previous autocorrect runs.
parent bfffe0f1
......@@ -30,7 +30,7 @@
.form-group.row
.col-sm-12
= text_area_tag :user_map, JSON.pretty_generate(@user_map), class: 'form-control', rows: 15
= text_area_tag :user_map, Gitlab::Json.pretty_generate(@user_map), class: 'form-control', rows: 15
.form-actions
= submit_tag _('Continue to the next step'), class: "btn btn-success"
......@@ -31,7 +31,7 @@
%h5 Request body:
%pre
:escaped
#{JSON.pretty_generate(hook_log.request_data)}
#{Gitlab::Json.pretty_generate(hook_log.request_data)}
%h5 Response headers:
%pre
- hook_log.response_headers.each do |k,v|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment