fix(nodes): Correct path and case sensitivity for Cheerio Web Scraper icon (#4359)

* fix Cheerio Web Scraper for online deployments

* fix: change node name
This commit is contained in:
toi500 2025-05-02 16:53:00 +02:00 committed by GitHub
parent e1979e42c3
commit f5b9c6907e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ interface ScrapedPageData {
}
class WebScraperRecursiveTool extends Tool {
name = 'cheerio_web_scraper'
name = 'web_scraper_tool'
description = `Scrapes web pages recursively or via default sitemap. Extracts title, description, and paragraph text. Input should be a single URL string. Returns a JSON string array of scraped page data objects.`
private maxDepth: number
@ -316,11 +316,11 @@ class WebScraperRecursive_Tools implements INode {
inputs: INodeParams[]
constructor() {
this.label = 'Cheerio Web Scraper'
this.name = 'cheerioWebScraper'
this.version = 1.0
this.label = 'Web Scraper Tool'
this.name = 'webScraperTool'
this.version = 1.1
this.type = 'Tool'
this.icon = 'cheerioWebScraper.svg'
this.icon = 'webScraperTool.svg'
this.category = 'Tools'
this.description = 'Scrapes web pages recursively by following links OR by fetching URLs from the default sitemap.'
this.baseClasses = [this.type, ...getBaseClasses(WebScraperRecursiveTool)]

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB