Merge pull request #736 from umbraco/bugfix-fix-loading-of-icons

Bugfix: Icon path went missing
This commit is contained in:
Jacob Overgaard
2023-05-26 09:49:36 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ const generateJSON = (icons) => {
console.log(icon);
return {
name: `umb:${icon.name}`,
path: `${icon.iconFileName}.js`,
path: `./icons/${icon.iconFileName}.js`,
};
});

File diff suppressed because one or more lines are too long