Skip to content

Commit

Permalink
💡 comment: TODOコメントの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
reiroop committed Sep 24, 2024
1 parent 34d9ea1 commit 56b716a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
>
<div :class="$style.label">
{{ cacheLabel(name) }}
<!-- TODO: キャッシュサイズを表示する -->
<!-- TODO: キャッシュサイズの計算ロジックを修正し、キャッシュサイズを表示する -->
</div>
</form-checkbox>
</div>
Expand Down Expand Up @@ -80,6 +80,8 @@ const cacheNames = async (category: CacheCategory) => {
const allNames = await window.caches.keys()
return allNames.filter(name => name.startsWith(category))
}
// TODO: キャッシュサイズの計算ロジックを修正する。現在の状態ではキャッシュサイズの合計値がnavigator.storage.estimate().usageと一致しない。
// const cacheSize = ref(
// Object.fromEntries(cacheCategories.map(name => [name, '計算中...']))
// )
Expand Down

0 comments on commit 56b716a

Please sign in to comment.