-
Notifications
You must be signed in to change notification settings - Fork 72
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
ブログのX共有時にタイトルが表示されるように修正 #7844
ブログのX共有時にタイトルが表示されるように修正 #7844
Conversation
@motohiro-mm |
@Shrimprin ただ初めてのレビューになるので、お時間いただきたいです🙏 大丈夫であればレビューさせていただきますので、よろしくお願いします! |
@motohiro-mm |
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.
@Shrimprin
お疲れ様です!
以下の動作確認できました!✨
・ブログ記事のタイトルがポストの最初に入力されている
・ブログ記事のリンクがポストに表示されている
・ハッシュタグ#fjordbootcampがポストに表示されている
1点だけ気になったところをコメントしました!
ご確認をお願いします!🙏
@@ -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: article.id |
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.
Xのシェアボタン部分と同様に
article: article
でarticle
をそのまま渡してerbファイル内でarticle.id
とするか、
余計なデータを渡さずarticle
のid
のみを渡したい場合は
article_id: article.id
としてerbファイルに渡すとわかりやすいかと思ったのですが、いかがでしょうか?
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.
@motohiro-mm
レビューいただきありがとうございます!
余計なデータを渡さずarticleのidのみを渡したい場合は
article_id: article.id
としてerbファイルに渡すとわかりやすいかと思ったのですが、いかがでしょうか?
ご指摘いただいたようにした方が可読性が高まりそうなため修正いたしました。
お手数おかけしますが再度ご確認をお願いできますでしょうか 🙏
5269d50
to
98b4819
Compare
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させていただきます!👍
@motohiro-mm @komagata |
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です~👌
@komagata |
Issue
概要
ブログをXで供した際に、Xの投稿にブログのタイトルが表示されるように修正しました。
変更確認方法
fix/add-blog-title-on-x-sharing
をローカルに取り込むbin/setup
を実行foreman start -f Procfile.dev
でローカルサーバを立ち上げPostする
ボタンをクリックし、下記を確認する#fjordbootcamp
がポストに表示されているScreenshot
変更前
変更後