Skip to content

Commit 41b2b84

Browse files
committedSep 2, 2024·
fix(devtools): false positive on indexable
Fixes harlan-zw/nuxt-seo#303
1 parent cc1613c commit 41b2b84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎client/app.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ const tab = useLocalStorage('nuxt-robots:tab', 'overview')
211211
<div v-else>
212212
<div class="inline-flex gap-3 mb-5 items-center">
213213
<div>
214-
<NIcon v-if="pathDebugData?.allow" icon="carbon:checkmark-filled" class="text-green-300" />
214+
<NIcon v-if="pathDebugData?.indexable" icon="carbon:checkmark-filled" class="text-green-300" />
215215
<NIcon v-else icon="carbon:warning-filled" class="text-red-300" />
216216
</div>
217-
<div v-if="pathDebugData?.allow">
217+
<div v-if="pathDebugData.indexable">
218218
Robots can crawl <code class="opacity-60 text-sm">{{ path }}</code>.
219219
</div>
220220
<div v-else>

0 commit comments

Comments
 (0)
Please sign in to comment.