Allowing whitespace in create memo relation dialog
Proposing a solution for the issue regarding not being able to input whitespace in create memo relation dialog.
Not exactly sure what error occurred on the front end test. This is in fact my first open source contribution so this is for sure a learning process.
Not exactly sure what error occurred on the front end test. This is in fact my first open source contribution so this is for sure a learning process.
Hi @TheMaksym, the frontend test failed because you need to have new line at the very end of file after export default.
Steps to resolve this
- cd
web - run
npm run lint --fix
or
manually enter a new line after export default ...
Then push the changes.
A general advice that I would give to you would be to run npm run lint and npm run lint --fix before you push any changes. This way any linter errors are easy to catch and fixable.