diff --git a/src/components/manage/PointHistoryCard.vue b/src/components/manage/PointHistoryCard.vue index 3448dc0..f6b9754 100644 --- a/src/components/manage/PointHistoryCard.vue +++ b/src/components/manage/PointHistoryCard.vue @@ -119,7 +119,6 @@ const historyColumn: DataTableColumns = [ target: '_blank', text: true, type: 'info', - secondary: true, }, () => row.extra.user?.name, ), diff --git a/src/views/pointViews/PointUserLayout.vue b/src/views/pointViews/PointUserLayout.vue index f913b25..b1df01a 100644 --- a/src/views/pointViews/PointUserLayout.vue +++ b/src/views/pointViews/PointUserLayout.vue @@ -117,16 +117,13 @@ onMounted(async () => { await useAuth.getAuthInfo() isLoading.value = false } - if (biliAuth.value.id >= 0) { - points.value = await getAllPoints() - } })