You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Inventory Group management page, the ui-selects are a bit buggy. Specifically:
They do not order the accounts correctly - they order by number instead of by the account tree.
After selecting an account, the number and label do not line up.
See the two problems below: Fig 1: Inventory Account Ordering Bug - these should be grouped by Title Account
Fig 2: Inventory Account Rendering Bug - the labels and numbers should line up.
Fixes
Thankfully, these are easy to fix. Here is what needs to happen:
The AccountService gives us the option to use Accounts.order(accounts) on an array of accounts to put them in the correct order. The solution will look like this:
The only problem with the rendering is that there the entire ui-select default choice should be wrapped in a <span> element. That should fix the view rendering.
The text was updated successfully, but these errors were encountered:
1866: feat(patients): accept any document upload r=jniles
This commit allows any document to be uploaded and attached to a
patient. It also updates the document upload modal with the latest
header crumb and translate directives.
Closes#1823
1867: Fix: ui select option rendering r=jniles
For some reason, a `ui-select` can only have a single `<span>` element within due to a miscreated CSS selector in the bootstrap css theme. Otherwise, the text is not labeled on the same line and is misaligned. This PR fixes those issues in the prices.html file and the inventory management page.
It also uses the `translate` directive where applicable.
Closes#993. Closes#1720.
1874: fix: allow navigation to settings after 403 error r=jniles
This commit fixes a small bug does not a user log out after they have
hit the 403 state.
Closes#1862.
In the Inventory Group management page, the
ui-select
s are a bit buggy. Specifically:See the two problems below:
Fig 1: Inventory Account Ordering Bug - these should be grouped by Title Account
Fig 2: Inventory Account Rendering Bug - the labels and numbers should line up.
Fixes
Thankfully, these are easy to fix. Here is what needs to happen:
AccountService
gives us the option to useAccounts.order(accounts)
on an array of accounts to put them in the correct order. The solution will look like this:See the bhAccountSelect code for how it solves this issue.
<span>
element. That should fix the view rendering.The text was updated successfully, but these errors were encountered: