File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
javascripts/discourse/components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export default class CategoryList extends Component {
66 constructor ( ) {
77 super ( ...arguments ) ;
88 this . blockTitle =
9- this . args ?. params ?. title || I18n . t ( themePrefix ( "top_contributors .heading" ) ) ;
9+ this . args ?. params ?. title || I18n . t ( themePrefix ( "category_list .heading" ) ) ;
1010
1111 this . categoryList = this . args ?. params ?. id . split ( "," ) ;
1212 if ( ! this . categoryList ) {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default class TopContributors extends Component {
1313 constructor ( ) {
1414 super ( ...arguments ) ;
1515 this . blockTitle =
16- this . args ?. params ?. title || I18n . t ( themePrefix ( "category_list .heading" ) ) ;
16+ this . args ?. params ?. title || I18n . t ( themePrefix ( "top_contributors .heading" ) ) ;
1717
1818 ajax ( this . requestURL ) . then ( ( data ) => {
1919 this . topContributors = data . directory_items ?. slice ( 0 , this . count ) ;
You can’t perform that action at this time.
0 commit comments