Skip to content

Commit

Permalink
updateCacheSize周りのバグ確認
Browse files Browse the repository at this point in the history
  • Loading branch information
reiroop committed Mar 12, 2024
1 parent d46f9c2 commit f46306b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ const anyCacheSelected = computed(() => {
})
const cacheSize = ref<Record<CacheName, number>>({
'traQ_S-precache': 0,
'files-cache': 0,
'thumbnail-cache': 0
'traQ_S-precache': -1,
'files-cache': -1,
'thumbnail-cache': -1
})
onMounted(() => {
updateCacheSize
updateCacheSize()
})
const updateCacheSize = async () => {
Expand Down

0 comments on commit f46306b

Please sign in to comment.