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

Release 2024-06-27 06:48:01 +0000 #7884

Merged
merged 31 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
150cc90
ポートフォリオページのtitleタグ内のユーザー名に'さん'をつけるように修正
motohiro-mm Jun 6, 2024
efb4886
ユーザーのプロフィールページのtitleタグ内が、「{ユーザー名}さんのプロフィール」になるように修正
motohiro-mm Jun 6, 2024
c272ffe
Bump ws from 6.2.2 to 6.2.3
dependabot[bot] Jun 18, 2024
c74fbd6
ブログのX共有時にタイトルがツイートに表示されるように修正
Shrimprin Jun 10, 2024
bf33c39
変数名を修正
Shrimprin Jun 14, 2024
0b230bd
修了したプラクティスを重複して計算する不具合を修正
kyokucho1989 May 28, 2024
ba8cab4
db/fixtureの整合性をとった
kyokucho1989 Jun 21, 2024
e966d26
退会者の日報で管理者・メンターにだけ「このユーザーは退会しています。」のメッセージが表示されるように追加
motohiro-mm Jun 9, 2024
3e93114
テストを追加、修正
motohiro-mm Jun 9, 2024
d192fb5
n日のぶりの日報ですメッセージに句読点を付けた
machida Jun 11, 2024
b6ec27e
退会ユーザー日報メッセージにデザインを入れ、退会ユーザーのにはn日ぶりの日報メッセージは非表示にした
machida Jun 11, 2024
3743d47
elsifの書きミスを修正
machida Jun 11, 2024
131f49f
退会していますメッセージに付いてる不要なクラスを削除
machida Jun 11, 2024
712ef21
デザイン追加に伴うテストの修正、動作確認に必要な日報の追加
motohiro-mm Jun 11, 2024
de3abb7
不要な空行を削除
motohiro-mm Jun 14, 2024
58f5139
viewの不要なパイプと改行を削除
motohiro-mm Jun 23, 2024
9a989b5
fixtureに追加した日報を削除し、テストを修正
motohiro-mm Jun 23, 2024
5deae07
カテゴリーの説明文がマークダウンで出力されるようにした
motohiro-mm Jun 13, 2024
cdf3bb6
カテゴリー説明の編集時のプレビュー、表示時の文章のスタイルを変更と見出しがないパターンの追加、注意文を追加
machida Jun 17, 2024
1d134cd
不要な改行を削除
motohiro-mm Jun 24, 2024
29d4ff5
ユーザー個別ページの提出物一覧のtitelタグを修正
su-su-su-su Jun 12, 2024
b30b681
テストを修正
su-su-su-su Jun 15, 2024
7235756
ユーザー個別ページのコメント一覧のtitelタグを修正
su-su-su-su Jun 17, 2024
e75f6af
プルダウンメニューにマイプロフィールを追加
su-su-su-su Jun 19, 2024
27bb22e
N+1 が発行されていたので対応
obregonia1 Jun 9, 2024
e4c8196
プログラマーをエンジニアに変更
machida Jun 24, 2024
64ac1ef
エンジニアの頭に何もつかなかったときはITとつくようにした(エンジニア→ITエンジニア)
machida Jun 25, 2024
087f6a5
ITエンジニアをソフトウェアエンジニアに変更、ログイン後、メンターの職業はプログラマーに戻した
machida Jun 26, 2024
9f60898
meta descriptionを短くした
machida Jun 26, 2024
f1ea0f3
一行が長い部分に改行を入れた
machida Jun 26, 2024
e5bffe7
user-group__countsのレイアウト崩れを修正
machida Jun 27, 2024
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 app/controllers/courses/practices_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Courses::PracticesController < ApplicationController
def index
@course = Course.find(params[:course_id])
@categories = @course.categories.order(:created_at)
@categories = @course.categories.includes(practices: %i[practices_books learning_minute_statistic started_students]).order(:created_at)
@learnings = current_user.learnings
end
end
2 changes: 1 addition & 1 deletion app/controllers/welcome_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class WelcomeController < ApplicationController
skip_before_action :require_active_user_login, raise: false
layout 'welcome'
DEFAULT_COURSE = 'Railsプログラマー'
DEFAULT_COURSE = 'Railsエンジニア'

def index
@mentors = current_user ? User.mentors_sorted_by_created_at : User.visible_sorted_mentors
Expand Down
4 changes: 2 additions & 2 deletions app/decorators/user_decorator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ def cached_completed_percentage
end

def completed_fraction
"修了: #{completed_practices.size} (必須: #{completed_practices_include_progress.size}/#{practices_include_progress.size})"
"修了: #{completed_practices.size} (必須: #{completed_practices_include_progress_size}/#{practices_include_progress.pluck(:id).uniq.size})"
end

def completed_fraction_in_metas
"#{completed_practices.size} (必須:#{completed_practices_include_progress.size})"
"#{completed_practices.size} (必須:#{completed_practices_include_progress_size})"
end

def customer_url
Expand Down
4 changes: 2 additions & 2 deletions app/helpers/meta_tags_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def default_meta_tags
site: 'FBC',
reverse: true,
charset: 'utf-8',
description: '月額29,800円、全機能が使えるお試し期間付き。フィヨルドブートキャンプは現場の即戦力になるためのスキルとプログラミングの楽しさを伝える、現役エンジニアが考える理想のプログラミングスクールの実現に励んでいます。',
description: '月額29,800円、全機能が使えるお試し期間付き。FBCは現場の即戦力になるためのスキルとプログラミングの楽しさを伝える、現役ソフトウェアエンジニアが考える理想のプログラミングスクールの実現に励んでいます。',
viewport: 'width=device-width, initial-scale=1.0',
og: {
title: :title,
Expand All @@ -31,7 +31,7 @@ def default_meta_tags
def welcome_meta_tags
default_meta_tags.deep_merge({
title:,
description: '月額29,800円、全機能が使えるお試し期間付き。フィヨルドブートキャンプは現場の即戦力になるためのスキルとプログラミングの楽しさを伝える、現役エンジニアが考える理想のプログラミングスクールの実現に励んでいます。',
description: '月額29,800円、全機能が使えるお試し期間付き。FBCは現場の即戦力になるためのスキルとプログラミングの楽しさを伝える、現役ソフトウェアエンジニアが考える理想のプログラミングスクールの実現に励んでいます。',
og: {
title: title || 'FJORD BOOT CAMP(フィヨルドブートキャンプ)',
description: :description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,12 @@
.categories-item__description
+position(relative)
margin-bottom: 1rem
p
+text-block(.875rem 1.6 0 .6em)
*:last-child
margin-bottom: 0

.categories-item__edit
float: right
margin-left: .5rem
+position(relative, top -.25rem)
z-index: 2

.categories-item__edit-link
+size(2rem)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
.user-group__counts
+media-breakpoint-up(md)
margin-top: -.5rem
flex: 1
max-width: 29rem
.card-counts__item
width: 3.5rem
color: var(--default-text)
7 changes: 6 additions & 1 deletion app/javascript/stylesheets/atoms/_a-form-help.sass
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
font-size: .75rem
color: var(--semi-muted-text)
&:not(:first-child)
margin-top: .5em
margin-top: .5rem
label + &:not(:first-child)
margin-top: 0
& + input,
& + textarea
margin-top: .5rem
em
font-style: normal
font-weight: 600
Expand Down
10 changes: 10 additions & 0 deletions app/javascript/stylesheets/atoms/_a-long-text.sass
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@
font-size: .8125rem
+media-breakpoint-down(sm)
font-size: .75rem
&.has-no-headding
h1,
h2,
h3,
h4,
h5,
h6
+text-block(1em 1.6 0 .625em, 600)
border: none
padding: 0
.a-long-text + &
margin-top: 2em
padding-top: 2em
Expand Down
19 changes: 17 additions & 2 deletions app/javascript/stylesheets/atoms/_a-short-text.sass
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.a-short-text
p
+text-block(1em 1.7 .75em)
+text-block(1em 1.6 .75em)
li
+text-block(1em 1.7)
+text-block(1em 1.6)
ol,
ul
margin-left: 1.25em
Expand All @@ -26,6 +26,9 @@
>li
>ul
list-style-type: square
a
+hover-link-reversal
+default-link
hr
display: block
+size(100% 0)
Expand All @@ -37,5 +40,17 @@
text-align: center
&.is-sm
font-size: .8125rem
&.has-no-headding
h1,
h2,
h3,
h4,
h5,
h6
+text-block(1em 1.6 0 .625em, 700)
border: none
padding: 0
*:first-child
margin-top: 0
*:last-child
margin-bottom: 0
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
+text-block(1.125em 1.6, 600)
margin-bottom: .625em
h6
+text-block(1em 1.86 0 .625em, 600)
+text-block(1em 1.6 0 .625em, 600)
p
+text-block(1em 1.86)
margin-bottom: 1.5em
Expand Down
6 changes: 3 additions & 3 deletions app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def away?
end

def completed_percentage
completed_practices_include_progress.size.to_f / practices_include_progress.size * MAX_PERCENTAGE
completed_practices_include_progress_size.to_f / practices_include_progress.pluck(:id).uniq.size * MAX_PERCENTAGE
end

def completed_practices_size_by_category
Expand All @@ -508,9 +508,9 @@ def completed_practices_size_by_category
.count('DISTINCT practices.id')
end

def completed_practices_include_progress
def completed_practices_include_progress_size
practices_include_progress.joins(:learnings)
.merge(Learning.complete.where(user_id: id))
.merge(Learning.complete.where(user_id: id)).pluck(:id).uniq.size
end

def active?
Expand Down
4 changes: 4 additions & 0 deletions app/views/application/_user_menu.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
= link_to root_path,
class: 'header-dropdown__item-link' do
| ダッシュボード
li.header-dropdown__item
= link_to user_path(id: current_user.id),
class: 'header-dropdown__item-link' do
| マイプロフィール
li.header-dropdown__item
= link_to edit_current_user_path,
class: 'header-dropdown__item-link' do
Expand Down
4 changes: 2 additions & 2 deletions app/views/articles/_ad.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ aside.bootcamp-ad
.a-short-text.is-sm
p
| フィヨルドブートキャンプは、
| プログラマーとして就職を目指せるスキルを
| 「プロの現場でプラス戦力として数えられるプログラマー」とし、
| ソフトウェアエンジニアとして就職を目指せるスキルを
| 「プロの現場でプラス戦力として数えられるソフトウェアエンジニア」とし、
| それを身につけることを目標とした
| オンラインプログラミングスクールです。
br
Expand Down
4 changes: 2 additions & 2 deletions app/views/articles/_share_button_facebook.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/ja_JP/sdk.js#xfbml=1&version=v18.0" nonce="eqECzFUd"></script>
<div class="fb-share-button" data-href="https://bootcamp.fjord.jp/articles/<%= article %>" data-layout="box_count" data-size="small">
<div class="fb-share-button" data-href="https://bootcamp.fjord.jp/articles/<%= article_id %>" data-layout="box_count" data-size="small">
<a class="fb-xfbml-parse-ignore"
href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fbootcamp.fjord.jp%2Farticles%2F<%= article %>&amp;src=sdkpreparse"
href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fbootcamp.fjord.jp%2Farticles%2F<%= article_id %>&amp;src=sdkpreparse"
rel="noopener noreferrer"
target="_blank">シェアする</a>
</div>
2 changes: 1 addition & 1 deletion app/views/articles/_share_button_hatena.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a class="hatena-bookmark-button"
href="https://b.hatena.ne.jp/entry/s/bootcamp.fjord.jp/articles/<%= article %>"
href="https://b.hatena.ne.jp/entry/s/bootcamp.fjord.jp/articles/<%= article_id %>"
data-hatena-bookmark-layout="vertical-normal"
data-hatena-bookmark-lang="ja" title="このエントリーをはてなブックマークに追加">
<img src="https://b.st-hatena.com/images/v4/public/entry-button/button-only@2x.png" alt="このエントリーをはてなブックマークに追加" width="20" height="20" style="border: none;" />
Expand Down
2 changes: 1 addition & 1 deletion app/views/articles/_share_button_x.html.erb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a class="x-share-button"
href="https://twitter.com/intent/tweet?url=https://bootcamp.fjord.jp/articles/<%= article %>&hashtags=fjordbootcamp"
href="https://twitter.com/intent/tweet?url=https://bootcamp.fjord.jp/articles/<%= article.id %>&hashtags=fjordbootcamp&text=<%= truncate(article.title, length: 100) %>%0a"
data-size="large"
rel="noopener noreferrer"
target="_blank">
Expand Down
4 changes: 2 additions & 2 deletions app/views/articles/_share_buttons.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
li.share-buttons__item.is-x
= render 'share_button_x', article: article
li.share-buttons__item
= render 'share_button_facebook', article: article
= render 'share_button_facebook', article_id: article.id
li.share-buttons__item
= render 'share_button_hatena', article: article
= render 'share_button_hatena', article_id: article.id
4 changes: 2 additions & 2 deletions app/views/articles/show.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ruby:
= l(@article.created_at)
- else
= l(@article.published_at)
= render 'share_buttons', article: @article.id
= render 'share_buttons', article: @article
- if @article.display_thumbnail_in_body?
- if @article.prepared_thumbnail?
= image_tag @article.prepared_thumbnail_url, class: 'article__image'
Expand All @@ -55,7 +55,7 @@ ruby:
.article__body
.js-markdown-view.a-long-text.is-md
= @article.body
= render 'share_buttons', article: @article.id
= render 'share_buttons', article: @article
- if admin_or_mentor_login?
hr.a-border
.card-footer
Expand Down
2 changes: 1 addition & 1 deletion app/views/courses/practices/_courses_practices.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
.categories-item__edit.is-only-mentor
a.categories-item__edit-link href=edit_mentor_category_path(category.id, course_id: course_id)
i.fa-solid.fa-pen
.a-long-text.is-md
.a-short-text.is-md.has-no-headding.js-markdown-view
= category.description
.categories-item__body.a-card
.category-practices
Expand Down
2 changes: 1 addition & 1 deletion app/views/home/_welcome_message.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
| 自分の気持ちをアウトプットする場としてコミュニティを使うのがオススメです。
p
| 学習が進まなくて辛い、新しいことを知って嬉しい、プログラミングができるようになって楽しい、
| 仕事が忙しくて学習に時間が取れなくて悲しい、プログラマーとして就職できるのか不安...これから学習を進めていく上で色んな気持ちになるかと思いますが、
| 仕事が忙しくて学習に時間が取れなくて悲しい、ソフトウェアエンジニアとして就職できるのか不安...これから学習を進めていく上で色んな気持ちになるかと思いますが、
| 気持ちをチャットや日報を使ってアウトプットしていきましょう。
| 辛いことに対しては親身に相談に乗ってくれたり、アドバイスをしてくれたり、嬉しいことは一緒に喜んでくれたり、
| コミュニティのみんなが「あなたのプログラミングを楽しむ気持ち」を育ててくれます。
Expand Down
4 changes: 2 additions & 2 deletions app/views/home/_welcome_message_for_adviser.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
| 「高給が欲しい」や「リモートで働きたい」だけでは、それを乗り切るのは難しく、
| プログラミング自体やコミュニティ、サービスを作る・育てること、チームより強めていくことを
| 「好き」、「楽しい」と思えることが必須になります。
| 「プログラミングが好きな気持ち」を育て、一人でも多くのエンジニアを輩出していきたいと考えています
| 「プログラミングが好きな気持ち」を育て、一人でも多くのプログラマーを輩出していきたいと考えています
p
| そのためには、受講生、メンター、卒業生、会社所属のエンジニア、フリーランスのエンジニア
| そのためには、受講生、メンター、卒業生、会社所属のプログラマー、フリーランスのプログラマー
| イベント主催者、コミュニティ運営者、OSS開発者...様々な立場の人がそれぞれの形でプログラミングや
| コミュニティやサービス運営を楽しんでいる姿を受講生に見せることが重要だと考えています。
| また、それを見れる場を受講生に提供できることがフィヨルドブートキャンプの最大の資産であると考えています。
Expand Down
12 changes: 8 additions & 4 deletions app/views/mentor/categories/_form.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@
.row.js-markdown-parent
.col-md-6.col-xs-12
= f.label :description, class: 'a-form-label'
= f.text_area :description, class: 'a-text-input js-warning-form js-markdown markdown-form__text-area practices-edit__input', data: { 'preview': '.js-preview' }
.a-form-help
p
| このカテゴリーを学ぶことでできるようになること、なぜこれを学ぶのかの理由、学ぶにあたっての必要な前提条件(修了していないといけないプラクティスなど)を記入してください。
| このカテゴリーを学ぶことでできるようになること、なぜこれを学ぶのかの理由、
| 学ぶにあたっての必要な前提条件(修了していないといけないプラクティスなど)を
| 記入してください。
br
| カテゴリーの説明には見出し(hタグ)も本文と同じ文字サイズで表示されます。
= f.text_area :description, class: 'a-text-input js-warning-form js-markdown markdown-form__text-area practices-edit__input', data: { 'preview': '.js-preview' }
.col-md-6.col-xs-12
.a-form-label
.a-form-label.md:mt-16
| プレビュー
.js-preview.a-long-text.is-md.practices-edit__input.markdown-form__preview
.js-preview.a-short-text.is-md.has-no-headding.practices-edit__input.markdown-form__preview
.form-actions
ul.form-actions__items
li.form-actions__item.is-main
Expand Down
21 changes: 13 additions & 8 deletions app/views/reports/show.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@
= render 'users/page_title', user: @report.user
= render 'users/page_tabs', user: @report.user

- if mentor_login? && !@report.first? && @report.latest_of_user?
.a-page-notice.is-only-mentor(class="#{@report.interval >= 10 ? 'is-danger' : ''}")
.container
.a-page-notice__inner
p
strong
| #{@report.interval}日
| ぶりの日報です
- if admin_or_mentor_login?
- if @report.user.retired_on?
.a-page-notice.is-muted.is-only-mentor
.container
.a-page-notice__inner
p このユーザーは退会しています。
- elsif !@report.first? && @report.latest_of_user?
.a-page-notice.is-only-mentor(class="#{@report.interval >= 10 ? 'is-danger' : ''}")
.container
.a-page-notice__inner
p
strong #{@report.interval}日
| ぶりの日報です。

.page-body
.container.is-xxl
Expand Down
9 changes: 6 additions & 3 deletions app/views/unauthorized/_about_fbc.html.slim
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.about-fbc
.a-long-text.is-md
p
| フィヨルドブートキャンプは、プログラマーとして就職を目指せるだけのスキルを身につけることを目標とした、
| オンラインプログラミングスクールです。現場のプログラマーによる、徹底的に現場目線にこだわった、
| 現場のプログラマーが考える、プログラミングスクールの在るべき姿の実現に励んでいます。
| フィヨルドブートキャンプは、ソフトウェアエンジニアとして就職を
| 目指せるだけのスキルを身につけることを目標とした、
| オンラインプログラミングスクールです。現場のソフトウェアエンジニアによる、
| 徹底的に現場目線にこだわった、
| 現場のソフトウェアエンジニアが考える、
| プログラミングスクールの在るべき姿の実現に励んでいます。
2 changes: 1 addition & 1 deletion app/views/users/comments/index.html.slim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/form/_after_graduation_hope.html.slim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.form-item#form-after-graduation-hope
= f.label :after_graduation_hope, 'フィヨルドブートキャンプを卒業した自分はどうなっていたいかを教えてください', class: 'a-form-label'
= f.text_area :after_graduation_hope, class: 'a-text-input is-sm', placeholder: 'IT ジェンダーギャップ問題を解決するアプリケーションを作る事業に、エンジニアとして携わる。'
= f.text_area :after_graduation_hope, class: 'a-text-input is-sm', placeholder: 'ITジェンダーギャップ問題を解決するアプリケーションを作る事業に、プログラマーとして携わる。'
.a-form-help
p
| フィヨルドブートキャンプを できるだけ詳細まで想像して、
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/form/_description.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
placeholder = '株式会社XXXXの開発チームマネージャーのXXXXXです。'
help_text = 'この情報は他のフィヨルドブートキャンプ参加者に公開されます。'
else
placeholder = 'XXXXと申します。月・水・金の 10:00 〜 19:00 に活動します。XXXXと考えたため、プログラマーとして就職することを決意しました。今はXXXXで働いています。XXXXが好きでよくXXXXしています。XXXXが好きな方、仲良くしてください!!'
placeholder = 'XXXXと申します。月・水・金の 10:00 〜 19:00 に活動します。XXXXと考えたため、ソフトウェアエンジニアとして就職することを決意しました。今はXXXXで働いています。XXXXが好きでよくXXXXしています。XXXXが好きな方、仲良くしてください!!'
help_text = 'この情報は他のフィヨルドブートキャンプ参加者に公開されます。あとからでも内容を変更することができます。'
end
= f.label :description, class: 'a-form-label is-required'
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/products/index.html.slim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/show.html.slim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading
Loading