Peter Holmberg 7 лет назад
Родитель
Сommit
13e6d2c5cb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      public/app/core/components/Select/UnitPicker.tsx

+ 1 - 1
public/app/core/components/Select/UnitPicker.tsx

@@ -23,7 +23,7 @@ export default class UnitPicker extends PureComponent<Props> {
       const options = group.submenu.map(unit => {
         return {
           label: unit.text,
-          value: unit.value,
+          value: unit.id,
         };
       });