@@ -1064,11 +1064,11 @@ export class WorkflowEditor extends BtrixElement {
10641064 ` ) }
10651065 ${ this . renderHelpTextCol ( infoTextFor [ "includeLinkedPages" ] , false ) }
10661066 ${ inputCol ( html `
1067- <sl-checkbox name="robots " ?checked=${ this . formState . robots } >
1067+ <sl-checkbox name="useRobots " ?checked=${ this . formState . useRobots } >
10681068 ${ msg ( "Skip pages disallowed by robots.txt" ) }
10691069 </sl-checkbox>
10701070 ` ) }
1071- ${ this . renderHelpTextCol ( infoTextFor [ "robots " ] , false ) }
1071+ ${ this . renderHelpTextCol ( infoTextFor [ "useRobots " ] , false ) }
10721072 ${ inputCol ( html `
10731073 <sl-checkbox
10741074 name="failOnContentCheck"
@@ -1587,11 +1587,11 @@ https://example.net`}
15871587 ` ) }
15881588 ${ this . renderHelpTextCol ( infoTextFor [ "includeLinkedPages" ] , false ) }
15891589 ${ inputCol ( html `
1590- <sl-checkbox name="robots " ?checked=${ this . formState . robots } >
1590+ <sl-checkbox name="useRobots " ?checked=${ this . formState . useRobots } >
15911591 ${ msg ( "Skip pages disallowed by robots.txt" ) }
15921592 </sl-checkbox>
15931593 ` ) }
1594- ${ this . renderHelpTextCol ( infoTextFor [ "robots " ] , false ) }
1594+ ${ this . renderHelpTextCol ( infoTextFor [ "useRobots " ] , false ) }
15951595 ${ inputCol ( html `
15961596 <sl-checkbox name="useSitemap" ?checked=${ this . formState . useSitemap } >
15971597 ${ msg ( "Check for sitemap" ) }
@@ -3355,7 +3355,7 @@ https://archiveweb.page/images/${"logo.svg"}`}
33553355 | "failOnFailedSeed"
33563356 | "failOnContentCheck"
33573357 | "saveStorage"
3358- | "robots "
3358+ | "useRobots "
33593359 > {
33603360 const jsonSeeds = this . formState . seedListFormat === SeedListFormat . JSON ;
33613361
@@ -3375,7 +3375,7 @@ https://archiveweb.page/images/${"logo.svg"}`}
33753375 failOnFailedSeed : this . formState . failOnFailedSeed ,
33763376 failOnContentCheck : this . formState . failOnContentCheck ,
33773377 saveStorage : this . formState . saveStorage ,
3378- robots : this . formState . robots ,
3378+ useRobots : this . formState . useRobots ,
33793379 } ;
33803380
33813381 return config ;
@@ -3389,7 +3389,7 @@ https://archiveweb.page/images/${"logo.svg"}`}
33893389 | "failOnFailedSeed"
33903390 | "failOnContentCheck"
33913391 | "saveStorage"
3392- | "robots "
3392+ | "useRobots "
33933393 > {
33943394 const primarySeedUrl = this . formState . primarySeedUrl ;
33953395 const includeUrlList = this . formState . customIncludeUrlList
@@ -3422,7 +3422,7 @@ https://archiveweb.page/images/${"logo.svg"}`}
34223422 failOnFailedSeed : false ,
34233423 failOnContentCheck : this . formState . failOnContentCheck ,
34243424 saveStorage : this . formState . saveStorage ,
3425- robots : this . formState . robots ,
3425+ useRobots : this . formState . useRobots ,
34263426 } ;
34273427 return config ;
34283428 }
0 commit comments