diff --git a/client/src/components/History/Multiple/MultipleView.vue b/client/src/components/History/Multiple/MultipleView.vue index 20b6e2773542..77955ccf8bca 100644 --- a/client/src/components/History/Multiple/MultipleView.vue +++ b/client/src/components/History/Multiple/MultipleView.vue @@ -38,6 +38,7 @@ const selectedHistories = computed(() => { } else { // get the latest four histories return [...histories.value] + .filter((h) => !h.user_id || (!currentUser.value?.isAnonymous && h.user_id === currentUser.value?.id)) .sort((a, b) => { if (a.update_time < b.update_time) { return 1;