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:
Diffstat (limited to 'app/views/shared/file_hooks/_index.html.haml')
-rw-r--r--app/views/shared/file_hooks/_index.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/shared/file_hooks/_index.html.haml b/app/views/shared/file_hooks/_index.html.haml
index 16e89463a4b..ba968c6b2d2 100644
--- a/app/views/shared/file_hooks/_index.html.haml
+++ b/app/views/shared/file_hooks/_index.html.haml
@@ -12,9 +12,9 @@
.col-lg-8.gl-mb-3
- if file_hooks.any?
= render Pajamas::CardComponent.new do |c|
- - c.header do
+ - c.with_header do
= _('File Hooks (%{count})') % { count: file_hooks.count }
- - c.body do
+ - c.with_body do
%ul.content-list
- file_hooks.each do |file|
%li
@@ -22,5 +22,5 @@
= File.basename(file)
- else
= render Pajamas::CardComponent.new do |c|
- - c.body do
+ - c.with_body do
.nothing-here-block= _('No file hooks found.')