diff --git a/frontend/src/components/ui/config-details.ts b/frontend/src/components/ui/config-details.ts index 5eb2d7f662..d0d51fd824 100644 --- a/frontend/src/components/ui/config-details.ts +++ b/frontend/src/components/ui/config-details.ts @@ -174,7 +174,7 @@ export class ConfigDetails extends BtrixElement { ), )} ${this.renderSetting( - msg("Auto-Scroll Behavior"), + msg("Autoscroll Behavior"), crawlConfig?.config.behaviors && !crawlConfig.config.behaviors.includes("autoscroll") ? msg("Disabled") @@ -182,6 +182,15 @@ export class ConfigDetails extends BtrixElement { >${msg("Enabled (default)")}`, )} + ${this.renderSetting( + msg("Autoclick Behavior"), + crawlConfig?.config.behaviors && + crawlConfig.config.behaviors.includes("autoclick") + ? msg("Enabled") + : html`${msg("Disabled (default)")}`, + )} ${this.renderSetting( msg("Delay Before Next Page"), renderTimeLimit(crawlConfig?.config.pageExtraDelay, 0), diff --git a/frontend/src/features/crawl-workflows/workflow-editor.ts b/frontend/src/features/crawl-workflows/workflow-editor.ts index 631e8e34ea..f4df330309 100644 --- a/frontend/src/features/crawl-workflows/workflow-editor.ts +++ b/frontend/src/features/crawl-workflows/workflow-editor.ts @@ -1195,7 +1195,7 @@ https://archiveweb.page/images/${"logo.svg"}`} name="autoscrollBehavior" ?checked=${this.formState.autoscrollBehavior} > - ${msg("Auto-scroll behavior")} + ${msg("Autoscroll behavior")} `, )} ${this.renderHelpTextCol(