From 13e6d2c5cb1c2d572b020055904a03861799218b Mon Sep 17 00:00:00 2001 From: Peter Holmberg Date: Wed, 9 Jan 2019 22:05:29 +0000 Subject: [PATCH] fixing unitpicker --- public/app/core/components/Select/UnitPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/Select/UnitPicker.tsx b/public/app/core/components/Select/UnitPicker.tsx index 75885cbbb84..29fa2928045 100644 --- a/public/app/core/components/Select/UnitPicker.tsx +++ b/public/app/core/components/Select/UnitPicker.tsx @@ -23,7 +23,7 @@ export default class UnitPicker extends PureComponent { const options = group.submenu.map(unit => { return { label: unit.text, - value: unit.value, + value: unit.id, }; });