From b82c9f39d2e1bc7fd48b5aed086f5b72474969f7 Mon Sep 17 00:00:00 2001 From: James Lyne Date: Mon, 17 Jan 2022 19:57:04 +0000 Subject: [PATCH] Only show "Show More" button if there is actually more to show. --- src/components/list/MarkerList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/list/MarkerList.vue b/src/components/list/MarkerList.vue index 1a7a1dc..508c923 100644 --- a/src/components/list/MarkerList.vue +++ b/src/components/list/MarkerList.vue @@ -102,7 +102,7 @@ export default defineComponent({ } }); - total.value = setContents.size; + total.value = count; }; const showMore = () => {