Skip to content

Commit

Permalink
fix: [cache debugger] cdn type "managed"
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Sep 17, 2024
1 parent ea31661 commit d0e9447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cache/debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const renderDetails = (data) => {
</div>
${configuredCdnType ? `<div class="row">
<span class="key">Configured CDN Type</span>
<span class="val"><span class="pill badge ${actualCdn === configuredCdnType ? 'good' : 'bad'}">${configuredCdnType}</span></span>
<span class="val"><span class="pill badge ${actualCdn === configuredCdnType || (configuredCdnType === 'managed' && actualCdn === 'fastly') ? 'good' : 'bad'}">${configuredCdnType}</span></span>
</div>` : ''}
${configuredCdnHost ? `<div class="row">
<span class="key">Configured CDN Host</span>
Expand Down

0 comments on commit d0e9447

Please sign in to comment.