diff --git a/app/views/users/products/index.html.slim b/app/views/users/products/index.html.slim
index 3368860c858..5d96b2cd244 100644
--- a/app/views/users/products/index.html.slim
+++ b/app/views/users/products/index.html.slim
@@ -1,4 +1,4 @@
-- title "#{@user.login_name}の提出物一覧"
+- title "#{@user.login_name}さんの提出物一覧"
- set_meta_tags description: "#{@user.login_name}さんの提出物一覧ページです。"
= render 'users/page_title', user: @user
diff --git a/test/system/user/products_test.rb b/test/system/user/products_test.rb
index 2a122821186..f209720e904 100644
--- a/test/system/user/products_test.rb
+++ b/test/system/user/products_test.rb
@@ -5,7 +5,7 @@
class User::ProductsTest < ApplicationSystemTestCase
test 'show listing products' do
visit_with_auth "/users/#{users(:hatsuno).id}/products", 'komagata'
- assert_equal 'hatsunoの提出物一覧 | FBC', title
+ assert_equal 'hatsunoさんの提出物一覧 | FBC', title
end
test 'show self assigned products to mentor' do