Increase result limit from 250 to 1000
This commit is contained in:
parent
316923f190
commit
f876cf66f1
|
@ -34,7 +34,7 @@ const QueryResultComponent = Ember.Component.extend({
|
||||||
|
|
||||||
@computed('content.result_count')
|
@computed('content.result_count')
|
||||||
resultCount: function(count) {
|
resultCount: function(count) {
|
||||||
if (count === 250) {
|
if (count === 1000) {
|
||||||
return I18n.t('explorer.max_result_count', { count });
|
return I18n.t('explorer.max_result_count', { count });
|
||||||
} else {
|
} else {
|
||||||
return I18n.t('explorer.result_count', { count });
|
return I18n.t('explorer.result_count', { count });
|
||||||
|
|
Loading…
Reference in New Issue