We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the "add transaction" function of the editor to add a balance assertion, arithmetic expressions are not considered valid input.
For example, the following balance assertion is well-formed and raises no errors with bean-check but can't be entered using the fava editor.
bean-check
2024-10-01 balance Expenses:Fees (10 + 0.25) USD
See screenshot for another example:
This can probably be fixed by changing this line in fava/frontend/src/entry-forms /Balance.svelte
fava/frontend/src/entry-forms /Balance.svelte
<input type="tel" pattern="-?[0-9.,]*" placeholder={_("Number")} size={10} bind:value={entry.amount.number} />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the "add transaction" function of the editor to add a balance assertion, arithmetic expressions are not considered valid input.
For example, the following balance assertion is well-formed and raises no errors with
bean-check
but can't be entered using the fava editor.See screenshot for another example:
This can probably be fixed by changing this line in
fava/frontend/src/entry-forms /Balance.svelte
The text was updated successfully, but these errors were encountered: