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
This PR introduces a fade:inSvelte transition to the <LedgerEntries />.
I was under the impression that Stores would behave a little differently, but this Issue put me on the right track: it's not the async nature of my stores that is the issue here, and we do expect a whole-store comparison when it's updated.
The faded transition only makes it more obvious. It was added as a cosmetic change: when looking at the /verify route, we drag and drop pictures that are reverse-looked up in the database, and positive matches appear in the UI as the requests come back. A little fade made it look quite nice, and that was that.
I believe this is a relatively recent regression, but am unable to pin down where from.
The process of displaying an item's history is relatively convoluted and requires the clicking of a button.
This action triggers
Ledger.addHistoryTo(entry)
, which updates the$ledgerData
(which is a store).I would have expected this update to not trigger a full-page redraw, but it does.
The text was updated successfully, but these errors were encountered: