Skip to content

Commit

Permalink
Merge pull request #5880 from sf-kataoka/admin_page_space_fix
Browse files Browse the repository at this point in the history
管理画面:受注/会員一覧のページングの下部余白がなかったのを商品一覧に合わせて修正(pb-4クラス追加)
  • Loading branch information
chihiro-adachi committed Dec 7, 2022
2 parents b35ab4e + a6da3a6 commit d7e808b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Eccube/Resource/template/admin/Customer/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ file that was distributed with this source code.
{% endfor %}
</tbody>
</table>
<div class="row justify-content-md-center mb-4">
<div class="row justify-content-md-center pb-4 mb-4">
{% if pagination.totalItemCount > 0 %}
{% include "@admin/pager.twig" with { 'pages' : pagination.paginationData, 'routes' : 'admin_customer_page' } %}
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions src/Eccube/Resource/template/admin/Order/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ file that was distributed with this source code.
{% endfor %}
</tbody>
</table>
<div class="row justify-content-md-center mb-4"></div>
<div class="row justify-content-md-center"></div>
</div>
<div class="row justify-content-md-center mb-4">
<div class="row justify-content-md-center pb-4 mb-4">
{% if pagination.totalItemCount > 0 %}
{% include "@admin/pager.twig" with { 'pages' : pagination.paginationData, 'routes' : 'admin_order_page' } %}
{% endif %}
Expand Down

0 comments on commit d7e808b

Please sign in to comment.