Skip to content

Commit df754c0

Browse files
committed
fix: fix embarrassing field name typos
1 parent b3d306d commit df754c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

app/components/CacheAnalysis.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ onUnmounted(() => {
158158
<template v-if="cacheAnalysis.cacheControl.ttl">
159159
<dt>
160160
TTL{{
161-
cacheAnalysis.cacheControl.netlifyCdnTttl ||
162-
cacheAnalysis.cacheControl.cdnTttl
161+
cacheAnalysis.cacheControl.netlifyCdnTtl ||
162+
cacheAnalysis.cacheControl.cdnTtl
163163
? " (browser)"
164164
: ""
165165
}}
@@ -172,7 +172,7 @@ onUnmounted(() => {
172172
<template v-if="cacheAnalysis.cacheControl.cdnTtl">
173173
<dt>
174174
TTL ({{
175-
cacheAnalysis.cacheControl.netlifyCdnTttl
175+
cacheAnalysis.cacheControl.netlifyCdnTtl
176176
? "other CDNs"
177177
: "Netlify CDN"
178178
}})
@@ -182,10 +182,10 @@ onUnmounted(() => {
182182
</dd>
183183
</template>
184184

185-
<template v-if="cacheAnalysis.cacheControl.netlifyCdnTttl">
185+
<template v-if="cacheAnalysis.cacheControl.netlifyCdnTtl">
186186
<dt>TTL (Netlify CDN)</dt>
187187
<dd :title="formatHumanSeconds(cacheAnalysis.cacheControl.netlifyCdnTtl)">
188-
{{ formatSeconds(cacheAnalysis.cacheControl.netlifyCdnTttl) }}
188+
{{ formatSeconds(cacheAnalysis.cacheControl.netlifyCdnTtl) }}
189189
</dd>
190190
</template>
191191

0 commit comments

Comments
 (0)