Fix crawl config name in "run now" alert (#673)

This commit is contained in:
sua yoo 2023-03-06 15:11:04 -08:00 committed by GitHub
parent 3b61266eed
commit 85416e2ca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -596,12 +596,12 @@ export class CrawlTemplatesDetail extends LiteElement {
this.notify({ this.notify({
message: msg( message: msg(
html`Started crawl from <strong>${this.crawlConfig!.name}</strong>. html`Started crawl from <strong>${this.renderName()}</strong>.
<br /> <br />
<a <a
class="underline hover:no-underline" class="underline hover:no-underline"
href="/orgs/${this.orgId}/crawls/crawl/${data.started}#watch" href="/orgs/${this.orgId}/crawls/crawl/${data.started}#watch"
@click=${this.navLink.bind(this)} @click="${this.navLink.bind(this)}"
>Watch crawl</a >Watch crawl</a
>` >`
), ),