Skip to content

Commit 9afe6ee

Browse files
authored
Merge pull request #712 from steemit/develop
Merge branch 'develop'
2 parents 7dc1e5c + fbb5084 commit 9afe6ee

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

app/components/modules/Header.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class Header extends React.Component {
153153
['hot', 'hot'],
154154
['trending', 'trending (24 hour)'],
155155
['trending30', 'trending (30 day)'],
156-
['promoted', 'promoted'],
156+
//['promoted', 'promoted'], //TODO: reenable after shared-db upgrade
157157
['active', 'active']
158158
];
159159
if (current_account_name) sort_orders.unshift(['home', 'home']);
@@ -164,7 +164,7 @@ class Header extends React.Component {
164164
['created', 'new'],
165165
['hot', 'hot'],
166166
['trending', 'trending'],
167-
['promoted', 'promoted'],
167+
//['promoted', 'promoted'], //TODO: reenable after shared-db upgrade
168168
['active', 'active']
169169
];
170170
if (current_account_name) sort_orders_horizontal.unshift(['home', 'home']);

app/components/pages/PostsIndex.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class PostsIndex extends React.Component {
8585
} else {
8686
posts = this.getPosts(order, category);
8787
if (posts !== null && posts.size === 0) {
88-
emptyText = `No ` + topics_order + ` #` + category + ` posts found`;
88+
emptyText = `No ` + topics_order + (category ? ` #` + category : '') + ` posts found`;
8989
}
9090
}
9191

app/components/pages/UserProfile.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@
7070
h2 {
7171
padding-top: 20px;
7272
.Userpic {
73-
padding-right: 1rem;
73+
margin-right: 1rem;
74+
vertical-align: middle;
7475
}
7576
}
7677

@@ -128,6 +129,11 @@
128129
padding-right: 0;
129130
}
130131

132+
.UserProfile__banner h2 .Userpic {
133+
width: 36px !important;
134+
height: 36px !important;
135+
}
136+
131137
.UserProfile__banner .UserProfile__buttons {
132138
text-align: right;
133139

app/locales/en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ const en = {
499499
// next 3 strings are used conditionally together
500500
show_more: 'Show more',
501501
show_less: 'Show less',
502-
value_posts: 'value posts',
502+
value_posts: 'low value posts',
503503
// PormotePost.jsx
504504
promote_post: 'Promote Post',
505505
spend_your_DEBT_TOKEN_to_advertise_this_post: 'Spend your ' + DEBT_TOKEN + 's to advertise this post in the promoted content section',

0 commit comments

Comments
 (0)