-
Notifications
You must be signed in to change notification settings - Fork 71
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
ブラウザのタブのタイトルとページの種類が一致しないのを修正 #8156
Conversation
7662c89
to
bf3e726
Compare
@Ryooo-k |
@hagiya0121 |
@@ -8,5 +6,5 @@ header.unauthorized-header | |||
= label | |||
h1.unauthorized-header__title | |||
span.font-thin 「 | |||
= title | |||
= truncate(title, length: 35, omission: '...') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
変更前は文字数制限なくtitle
をそのまま出力してますが、変更後は文字数制限を設けてます。
この仕様変更は確認済み、という理解でよいでしょうか?
(Q&Aのtitleもレンダリングされるので、変更されたのだと思いますが念の為確認です)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
自分が仕様を勘違いしていました。修正しました!
title "Q&A: #{truncate(@question.title, length: 35, omission: '...')}" | ||
set_meta_tags og: { title: "Q&A: #{@question.title}" } | ||
description "オンラインプログラミングスクール「フィヨルドブートキャンプ」のQ&A「#{@question.title}」のページです。" | ||
content_for :extra_body_classes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ものすごーく細かいことですが、インデントが半角スペース1つだけなのが気になりました!
他のファイルも確認してみましたが、インデントは半角スペース2つで統一されているので、合わせた方が良いかなと思いました👀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました!
@hagiya0121 |
@Ryooo-k |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正ありがとうございます👍Approveとさせていただきます!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させて頂きました。OKです〜🙆♂️
Issue
プラクティスなのにタイトルが"Q&A"になっている #8053
概要
未ログインの状態で特定のページにアクセスすると、ブラウザのタブのタイトルがページの種類と一致しない問題を修正しました。
原因
_unauthorized_header.html.slim
というパーシャルで間違ったタイトルが設定されていました。対処
unauthorized_show.slim
でもタイトルを設定しているので、パーシャル側のタイトル設定は不要だと思い削除しました。set_meta_tags og: { title: "Q&A: #{title}" }
は無くても、デフォルトでog:titleにtitleタグの内容が入るように設定されていたので削除しました。unauthorized_show.slim
のタイトル設定をログイン時のタイトルと一致するように修正しました。変更確認方法
bug/fix-tab-title
をローカルに取り込むforeman start -f Procfile.dev
でサーバーを立ち上げ(development) プラクティス OS X Mountain Lionをクリーンインストールする | FBC
と一致することを確認(development) Docs: プラクティスに紐付いたDocs3 | FBC
と一致することを確認http://localhost:3000/questions/1037106414
(development) Q&A: テストの質問40 | FBC
と一致することを確認http://localhost:3000/users/991528156
(development) kimuraさんのプロフィール | FBC
と一致することを確認Screenshot
変更前
変更後