Fix unsafe property access and stale await in DurationInput, ModalAccountInfo, FilesPage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 14:10:35 +08:00
parent 5f597961c6
commit b5dfae9835
3 changed files with 4 additions and 2 deletions

View File

@@ -63,6 +63,6 @@ const is_active = computed(() => currentViewingUser.value.is_active);
onBeforeMount(async () => {
await acctMgmtStore.getUserDetail(currentViewingUser.value.username);
visitTime.value = currentViewingUser.value.detail.visits;
visitTime.value = currentViewingUser.value.detail?.visits ?? 0;
});
</script>