partkeepr

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

commit 7757f707c988ee641e199dcc932eb3c0b3353c0a
parent 31bbc065fdfb13cb7a9c22fb30d2836389d75208
Author: Felicia Hummel <felicitus@felicitus.org>
Date:   Fri,  6 Jan 2017 21:27:07 +0100

Merge pull request #767 from partkeepr/PartKeepr-54

Fixed issue where a string value wouldn't be shown
Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsManager.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsManager.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsManager.js @@ -566,7 +566,7 @@ Ext.define('PartKeepr.PartManager', { minMaxCombined = ""; if (partParameter.get("valueType") === "string") { - return ""; + return partParameter.get("stringValue"); } if (partParameter.getUnit() instanceof PartKeepr.UnitBundle.Entity.Unit) {