From 6f03aa164fd1351978301e09a436ceb2d1e3748a Mon Sep 17 00:00:00 2001 From: Kane York Date: Wed, 8 Jul 2015 19:21:59 -0700 Subject: [PATCH 1/2] FIX: Automatically add like-count to post menu --- .../20150709021818_add_like_count_to_post_menu.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20150709021818_add_like_count_to_post_menu.rb diff --git a/db/migrate/20150709021818_add_like_count_to_post_menu.rb b/db/migrate/20150709021818_add_like_count_to_post_menu.rb new file mode 100644 index 00000000000..a12a166f417 --- /dev/null +++ b/db/migrate/20150709021818_add_like_count_to_post_menu.rb @@ -0,0 +1,10 @@ +class AddLikeCountToPostMenu < ActiveRecord::Migration + def up + execute < Date: Fri, 10 Jul 2015 13:22:16 -0700 Subject: [PATCH 2/2] FIX: Linebreaks not showing in tweets --- app/assets/stylesheets/common/base/onebox.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/common/base/onebox.scss b/app/assets/stylesheets/common/base/onebox.scss index e02efc7d85e..37dab75c7e1 100644 --- a/app/assets/stylesheets/common/base/onebox.scss +++ b/app/assets/stylesheets/common/base/onebox.scss @@ -238,3 +238,7 @@ pre.onebox code { .onebox-body .github-content-right{ margin-left:100px; } + +.twitterstatus .onebox-body p { + white-space: pre-wrap; +}