Skip to content

Commit

Permalink
短い2行を1行にまとめるよう修正
Browse files Browse the repository at this point in the history
  • Loading branch information
a-kuroki-gs committed Mar 25, 2024
1 parent 158d4ac commit 056f3c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
9 changes: 3 additions & 6 deletions app/views/admin/inquiries/_inquiries_item.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@
.card-list-item-meta__items
.card-list-item-meta__item
.a-meta
span.a-meta__label
| 受信日
span.a-meta__value
= l inquiry.created_at
span.a-meta__label 受信日
span.a-meta__value = l inquiry.created_at
.card-list-item__row
.a-meta
p
= inquiry.body.truncate(100)
p = inquiry.body.truncate(100)
6 changes: 2 additions & 4 deletions app/views/admin/inquiries/index.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@
header.page-header
.container
.page-header__inner
h1.page-header__title
= title
h1.page-header__title = title

= render 'admin/admin_page_tabs'

header.page-main-header
.container
.page-main-header__inner
h1.page-main-header__title
| お問い合わせ一覧
h1.page-main-header__title お問い合わせ一覧
hr.a-border
.page-body
.page-body__inner
Expand Down
6 changes: 2 additions & 4 deletions app/views/admin/inquiries/show.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ hr.a-border
.page-content-header-metas__start
.page-content-header-metas__meta
.a-meta
span.a-meta__label
| 受信日
span.a-meta__value
= l @inquiry.created_at
span.a-meta__label 受信日
span.a-meta__value = l @inquiry.created_at
.page-content__body
.a-card
.card-body
Expand Down

0 comments on commit 056f3c7

Please sign in to comment.