From 85180cfbb08edc00ce5baa1079921bee3c184b20 Mon Sep 17 00:00:00 2001 From: unikounio Date: Tue, 12 Mar 2024 15:55:07 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E5=80=8B?= =?UTF-8?q?=E5=88=A5=E3=83=9A=E3=83=BC=E3=82=B8=E3=80=81=E4=B8=80=E8=A6=A7?= =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8=E3=81=AE=E3=82=AB=E3=82=A6=E3=83=B3?= =?UTF-8?q?=E3=83=88=E6=95=B0=E4=B8=80=E8=A6=A7=E3=81=A7=E7=94=A8=E3=81=84?= =?UTF-8?q?=E3=82=8B=E3=83=A1=E3=82=BD=E3=83=83=E3=83=89=E3=82=92size?= =?UTF-8?q?=E3=81=AB=E7=B5=B1=E4=B8=80=20=E7=B5=B1=E4=B8=80=E3=81=99?= =?UTF-8?q?=E3=82=8B=E3=83=A1=E3=82=BD=E3=83=83=E3=83=89=E3=81=AF=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E5=8A=B9=E7=8E=87=E3=81=AE=E8=A6=B3=E7=82=B9=E3=81=8B?= =?UTF-8?q?=E3=82=89size=E3=81=A8=E3=81=97=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/users/_activity_counts.html.slim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/views/users/_activity_counts.html.slim b/app/views/users/_activity_counts.html.slim index 4d4bfab2c92..114fa40e15b 100644 --- a/app/views/users/_activity_counts.html.slim +++ b/app/views/users/_activity_counts.html.slim @@ -5,34 +5,34 @@ dt.card-counts__item-label | 日報 dd.card-counts__item-value - = link_or_text_for_count(user.reports.count, user_reports_path(user)) + = link_or_text_for_count(user.reports.size, user_reports_path(user)) .card-counts__item .card-counts__item-inner dt.card-counts__item-label | 提出物 dd.card-counts__item-value - = link_or_text_for_count(user.products.count, user_products_path(user)) + = link_or_text_for_count(user.products.size, user_products_path(user)) .card-counts__item .card-counts__item-inner dt.card-counts__item-label | コメント dd.card-counts__item-value - = link_or_text_for_count(user.comments.count, user_comments_path(user)) + = link_or_text_for_count(user.comments.size, user_comments_path(user)) .card-counts__item .card-counts__item-inner dt.card-counts__item-label | 質問 dd.card-counts__item-value - = link_or_text_for_count(user.questions.count, user_questions_path(user)) + = link_or_text_for_count(user.questions.size, user_questions_path(user)) .card-counts__item .card-counts__item-inner dt.card-counts__item-label | 回答 dd.card-counts__item-value - = link_or_text_for_count(user.answers.count, user_answers_path(user)) + = link_or_text_for_count(user.answers.size, user_answers_path(user)) .card-counts__item .card-counts__item-inner dt.card-counts__item-label | ポートフォリオ dd.card-counts__item-value - = link_or_text_for_count(user.works.count, user_portfolio_path(user)) + = link_or_text_for_count(user.works.size, user_portfolio_path(user))