Skip to content

Commit

Permalink
Add autoclick to workflow and crawl settings display
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed Feb 10, 2025
1 parent a04a228 commit 36daa94
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions frontend/src/components/ui/config-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,15 @@ export class ConfigDetails extends BtrixElement {
>${msg("Enabled (default)")}</span
>`,
)}
${this.renderSetting(
msg("Autoclick Behavior"),
crawlConfig?.config.behaviors &&
crawlConfig.config.behaviors.includes("autoclick")
? msg("Enabled")
: html`<span class="text-neutral-400"
>${msg("Disabled (default)")}</span
>`,
)}
${this.renderSetting(
msg("Delay Before Next Page"),
renderTimeLimit(crawlConfig?.config.pageExtraDelay, 0),
Expand Down

0 comments on commit 36daa94

Please sign in to comment.