diff --git a/src/components/calendar/search/lists/SearchList.vue b/src/components/calendar/search/lists/SearchList.vue index 19d62b4..b436120 100644 --- a/src/components/calendar/search/lists/SearchList.vue +++ b/src/components/calendar/search/lists/SearchList.vue @@ -28,7 +28,7 @@ function handleJumpToDate(date?: LeimDate) { const searchLimit = 10 const activeSearchLimit = computed(() => (!props.currentEntity ? searchLimit : 9999)) -const resultsToDisplay = computed(() => props.results.slice(0, activeSearchLimit.value)) +const resultsToDisplay = computed(() => props.results) const sortedResults = computed(() => { return [...resultsToDisplay.value].sort((a, b) => { let firstDate: LeimDate