(typeof seed === "string" ? seed : seed.url))
.join(", ")}
>
${crawlConfig.config.seeds
.map((seed) => (typeof seed === "string" ? seed : seed.url))
.join(", ")}
${crawlConfig.crawlCount === 1
? msg(str`${crawlConfig.crawlCount} crawl`)
: msg(
str`${(crawlConfig.crawlCount || 0).toLocaleString()} crawls`
)}
${crawlConfig.crawlCount
? html`
${msg(
str`Last Crawl: ${
crawlConfig.lastCrawlState &&
crawlConfig.lastCrawlState.replace(/_/g, " ")
}`
)}
{
e.stopPropagation();
this.navLink(e);
}}
>
`
: html`
${msg("No finished crawls")}
`}
${crawlConfig.schedule
? html`
${humanizeSchedule(crawlConfig.schedule, {
length: "short",
})}
`
: html`${msg("No schedule")}`}