File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ class Header extends React.Component {
153
153
[ 'hot' , 'hot' ] ,
154
154
[ 'trending' , 'trending (24 hour)' ] ,
155
155
[ 'trending30' , 'trending (30 day)' ] ,
156
- [ 'promoted' , 'promoted' ] ,
156
+ // ['promoted', 'promoted'], //TODO: reenable after shared-db upgrade
157
157
[ 'active' , 'active' ]
158
158
] ;
159
159
if ( current_account_name ) sort_orders . unshift ( [ 'home' , 'home' ] ) ;
@@ -164,7 +164,7 @@ class Header extends React.Component {
164
164
[ 'created' , 'new' ] ,
165
165
[ 'hot' , 'hot' ] ,
166
166
[ 'trending' , 'trending' ] ,
167
- [ 'promoted' , 'promoted' ] ,
167
+ // ['promoted', 'promoted'], //TODO: reenable after shared-db upgrade
168
168
[ 'active' , 'active' ]
169
169
] ;
170
170
if ( current_account_name ) sort_orders_horizontal . unshift ( [ 'home' , 'home' ] ) ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ class PostsIndex extends React.Component {
85
85
} else {
86
86
posts = this . getPosts ( order , category ) ;
87
87
if ( posts !== null && posts . size === 0 ) {
88
- emptyText = `No ` + topics_order + ` #` + category + ` posts found` ;
88
+ emptyText = `No ` + topics_order + ( category ? ` #` + category : '' ) + ` posts found` ;
89
89
}
90
90
}
91
91
Original file line number Diff line number Diff line change 70
70
h2 {
71
71
padding-top : 20px ;
72
72
.Userpic {
73
- padding-right : 1rem ;
73
+ margin-right : 1rem ;
74
+ vertical-align : middle ;
74
75
}
75
76
}
76
77
128
129
padding-right : 0 ;
129
130
}
130
131
132
+ .UserProfile__banner h2 .Userpic {
133
+ width : 36px !important ;
134
+ height : 36px !important ;
135
+ }
136
+
131
137
.UserProfile__banner .UserProfile__buttons {
132
138
text-align : right ;
133
139
Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ const en = {
499
499
// next 3 strings are used conditionally together
500
500
show_more : 'Show more' ,
501
501
show_less : 'Show less' ,
502
- value_posts : 'value posts' ,
502
+ value_posts : 'low value posts' ,
503
503
// PormotePost.jsx
504
504
promote_post : 'Promote Post' ,
505
505
spend_your_DEBT_TOKEN_to_advertise_this_post : 'Spend your ' + DEBT_TOKEN + 's to advertise this post in the promoted content section' ,
You can’t perform that action at this time.
0 commit comments