Issue reporting
If you discover a security issue in the @dnb/eufemia
library, please report it by sending an
email to tobias.hoegh@dnb.no. This will allow us to assess the risk, and make a fix available before we add a
bug report to the GitHub repository. Thanks for helping out.
When reporting issues or suggesting new features, we would appreciate if you use GitHub Issues or our Jira Kanban board. Another option is to send a Slack message in #eufemia-web.
For reproduction of issues you can use our codesandbox starter template. Including this in your report helps us out a lot.
GitHub issues
When reporting issues on GitHub, you need to have a GitHub account.
First step is to click on the New issue
button in the Issues tab
on GitHub.
The next step will show you all the possibilities for new issues. Create a new Bug Report
or a Feature Proposal
to go next.
These will each have a prepared template you need to fill out in order to submit your issue.
Eufemia Version
Browser JS: Type Eufemia.version
in your browser console.
Browser CSS: Type window.getComputedStyle(document.body).getPropertyValue('--eufemia-version')
in your browser console.
Node.js: Use import or require to find out what Eufemia version is imported:
// NB: Use "require" if neededimport { version } from '@dnb/eufemia/shared/Eufemia'console.log('Eufemia version:', version)