Skip to content

Commit

Permalink
fix(client): lcp element not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Feb 29, 2024
1 parent 44b06a2 commit f8da8e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ watch(isModalOpen, () => {
<template>
<div v-if="report.report" class="text-sm w-full">
<audit-result :value="report.report.audits['largest-contentful-paint']" class="ml-2" />
<div v-for="(item, key) in report.report.audits['largest-contentful-paint-element'].details.items" :key="key" class="flex items-center">
<div v-for="(item, key) in report.report.audits['largest-contentful-paint-element'].details.items[0].items" :key="key" class="flex items-center">
<btn-action title="Open full image" @click="openModal">
<CellImageOutline :item="item" :report="report" :column="column" :size="{ width: 150, height: 112 }" />
</btn-action>
Expand Down

0 comments on commit f8da8e6

Please sign in to comment.