From b825bb68ccfb9a3650456d652f74d96f415b01cc Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 5 Aug 2021 08:31:07 +0200 Subject: [PATCH] Reduce maximum item count for map --- frontend/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/App.vue b/frontend/App.vue index 3166b5e..d262236 100644 --- a/frontend/App.vue +++ b/frontend/App.vue @@ -722,7 +722,7 @@ export default { return !this.item_type_filters.length && this.map_area > 1000 * 1000 * 1000; }, too_many_items() { - return this.item_count > 1400; + return this.item_count > 600; }, loading() { return this.osm_loading || this.wikidata_loading;