From f0e3a8bd4d6227755d0f69f9e9f16500f30cd879 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 22 Jul 2021 17:03:31 +0200 Subject: [PATCH] Increase number of items allowed --- frontend/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/App.vue b/frontend/App.vue index 56241ea..bf51967 100644 --- a/frontend/App.vue +++ b/frontend/App.vue @@ -677,7 +677,7 @@ export default { return this.map_area > 1000 * 1000 * 1000; }, too_many_items() { - return this.item_count > 400; + return this.item_count > 1400; }, loading() { return this.osm_loading || this.wikidata_loading;