Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

管理画面:受注/会員一覧のページングの下部余白がなかったのを商品一覧に合わせて修正(pb-4クラス追加) #5880

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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