Issue Description
The application is failing to load Bootstrap JS files due to incorrect WebJar path configuration. The current paths include version numbers which is incorrect for npm-based WebJars.
Error Details:
- NoResourceFoundException (ID: 1251351a-4449-11f0-90fe-0242ac160004)
- Environment: AGENTIC
- Last Occurrence: 2025-06-26T05:34:45.191746Z
Changes Made
A pull request (#349) has been created to fix this issue by:
- Removing version numbers from WebJar paths
- Using the correct npm-style WebJar path format
Technical Details
- Updated Bootstrap JS path from
/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.js to /webjars/bootstrap/dist/js/bootstrap.bundle.min.js
- Updated Font Awesome CSS path from
/webjars/font-awesome/4.7.0/css/font-awesome.min.css to /webjars/font-awesome/css/font-awesome.min.css
Related Links
Issue Description
The application is failing to load Bootstrap JS files due to incorrect WebJar path configuration. The current paths include version numbers which is incorrect for npm-based WebJars.
Error Details:
Changes Made
A pull request (#349) has been created to fix this issue by:
Technical Details
/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.jsto/webjars/bootstrap/dist/js/bootstrap.bundle.min.js/webjars/font-awesome/4.7.0/css/font-awesome.min.cssto/webjars/font-awesome/css/font-awesome.min.cssRelated Links