Resolve favicon locally (WIP)

This commit is contained in:
Stanislav Khromov 2022-10-09 04:07:45 +02:00
parent 0cb14f3f6c
commit 4688986901
13 changed files with 91 additions and 30 deletions

View file

@ -46,13 +46,13 @@ export default function WebsiteList({ websites, showCharts, limit }) {
return (
<div>
{ordered.map(({ website_id, name, domain }, index) =>
{ordered.map(({ website_id, name, favicon }, index) =>
index < limit ? (
<div key={website_id} className={styles.website}>
<WebsiteChart
websiteId={website_id}
title={name}
domain={domain}
favicon={favicon}
showChart={showCharts}
showLink
/>