Skip to content

Commit

Permalink
fix(devtools): false positive on indexable
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Sep 2, 2024
1 parent cc1613c commit 41b2b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ const tab = useLocalStorage('nuxt-robots:tab', 'overview')
<div v-else>
<div class="inline-flex gap-3 mb-5 items-center">
<div>
<NIcon v-if="pathDebugData?.allow" icon="carbon:checkmark-filled" class="text-green-300" />
<NIcon v-if="pathDebugData?.indexable" icon="carbon:checkmark-filled" class="text-green-300" />
<NIcon v-else icon="carbon:warning-filled" class="text-red-300" />
</div>
<div v-if="pathDebugData?.allow">
<div v-if="pathDebugData.indexable">
Robots can crawl <code class="opacity-60 text-sm">{{ path }}</code>.
</div>
<div v-else>
Expand Down

0 comments on commit 41b2b84

Please sign in to comment.