Last active
April 10, 2023 01:09
-
-
Save austinginder/2d07176beabddb8fbac1f54c60f313d6 to your computer and use it in GitHub Desktop.
On Xero reconcile page, expand shortened descriptions back to full descriptions. Copy and paste into Chrome's DevTools. Solves https://productideas.xero.com/forums/939198-for-small-businesses/suggestions/45691177-reconciliation-include-more-reference-details-in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
items = document.querySelectorAll('span[data-testid="notes"]') | |
items.forEach((item) => { | |
item.innerHTML = item.title | |
}) | |
document.querySelector("body").addEventListener("click", evt => { | |
if ( event.target.classList.contains("okayButton") ) { | |
items = document.querySelectorAll('span[data-testid="notes"]') | |
items.forEach((item) => { | |
item.innerHTML = item.title | |
}) | |
} | |
}); |
Someone else started the idea in Xero's forums. Feel free to up vote it: https://productideas.xero.com/forums/939198-for-small-businesses/suggestions/45691177-reconciliation-include-more-reference-details-in.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Austin, you recently pasted this link in xero, which I assume has been removed, is there any way of sending me a new link?
Idea: Bank Reconciliation - Show more statement lines per page
This is just a UI issue that needs fixed. All of the information is already there. Here is my workaround fix: https://gist.github.com/austinginder/dcde9a68f137fa60f1353736124da21f. Copy and paste the javascript in your browser developer console and it will reveal the full details. I use this every time I reconcile :)