Skip to content

Commit

Permalink
Fix issue with script name casing (#6066)
Browse files Browse the repository at this point in the history
  • Loading branch information
marklundin committed Feb 19, 2024
1 parent 1be0933 commit 2272774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/handlers/script.js
Expand Up @@ -162,7 +162,7 @@ class ScriptHandler extends ResourceHandler {
}
}

registerScript(scriptClass, scriptClass.name);
registerScript(scriptClass, scriptClass.name.toLowerCase());
}
}

Expand Down

0 comments on commit 2272774

Please sign in to comment.