You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have a node that is in an npm package. It is using npm scoped name like "@companyName/n8n-nodes-ourNode".
Since updating to 0.217.2 the icon is no longer showing. /icons/@companyName/n8n-nodes-ourNode/dist/icon.svg gives a 404
Expected behavior
The URL should return the icon and it should be visible in the UI
Environment (please complete the following information):
OS: Windows 10
n8n Version: 0.217.2
Node.js Version: 16.17.0
Database system: SQLite
Additional context
This seems to have been broken by #5481, which uses a regex in the /icons URL served. That regex matches ":packageName" to only the scope part of the name (e.g. "@companyname") instead of the full name.
The text was updated successfully, but these errors were encountered:
Just to let you know this has been fixed and will be available from the next release, There will be another notification here once the release is available.
Describe the bug
I have a node that is in an npm package. It is using npm scoped name like "@companyName/n8n-nodes-ourNode".
Since updating to 0.217.2 the icon is no longer showing.
/icons/@companyName/n8n-nodes-ourNode/dist/icon.svg
gives a 404Expected behavior
The URL should return the icon and it should be visible in the UI
Environment (please complete the following information):
Additional context
This seems to have been broken by #5481, which uses a regex in the /icons URL served. That regex matches ":packageName" to only the scope part of the name (e.g. "@companyname") instead of the full name.
The text was updated successfully, but these errors were encountered: