summaryrefslogtreecommitdiff
path: root/app/views/shared/file_hooks/_index.html.haml
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.haml21
1 files changed, 11 insertions, 10 deletions
diff --git a/app/views/shared/file_hooks/_index.html.haml b/app/views/shared/file_hooks/_index.html.haml
index d48e9f3d02e..16e89463a4b 100644
--- a/app/views/shared/file_hooks/_index.html.haml
+++ b/app/views/shared/file_hooks/_index.html.haml
@@ -11,15 +11,16 @@
.col-lg-8.gl-mb-3
- if file_hooks.any?
- .card
- .card-header
+ = render Pajamas::CardComponent.new do |c|
+ - c.header do
= _('File Hooks (%{count})') % { count: file_hooks.count }
- %ul.content-list
- - file_hooks.each do |file|
- %li
- .monospace
- = File.basename(file)
-
+ - c.body do
+ %ul.content-list
+ - file_hooks.each do |file|
+ %li
+ .monospace
+ = File.basename(file)
- else
- .card.bg-light.text-center
- .nothing-here-block= _('No file hooks found.')
+ = render Pajamas::CardComponent.new do |c|
+ - c.body do
+ .nothing-here-block= _('No file hooks found.')