partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3c6b1a78f820b2ad9d88060b543c6208480174e9
parent bc49a34bdf95e21e3c402cb3589ac9a3ecce27ea
Author: Felicitus <felicitus@felicitus.org>
Date:   Sun, 27 Nov 2011 01:35:39 +0100

Bugfix for issue #111

Diffstat:
Mfrontend/js/Components/Part/PartStockHistory.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/js/Components/Part/PartStockHistory.js b/frontend/js/Components/Part/PartStockHistory.js @@ -23,7 +23,7 @@ Ext.define('PartKeepr.PartStockHistory', { flex: 0.4, minWidth: 80, renderer: function (val) { - var rec = PartKeepr.getApplication().getUserStore().findRecord("id", val); + var rec = PartKeepr.getApplication().getUserStore().getById(val); if (rec) { return rec.get("username");