Просмотр исходного кода

Fix '[object object]' label in dropdown

Appears when rendering for the first time OCI's 'Migration Image Map'
field in the Wizard Options page.
This error was related to the fact that the dropdown had a separator.
Sergiu Miclea 8 лет назад
Родитель
Сommit
c006db6664
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/components/molecules/PropertiesTable/index.jsx

+ 1 - 1
src/components/molecules/PropertiesTable/index.jsx

@@ -124,7 +124,7 @@ class PropertiesTable extends React.Component<Props> {
       ...items,
     ]
 
-    let selectedItem = items.find(i => i.value === this.props.valueCallback(prop))
+    let selectedItem = items.find(i => !i.separator && i.value === this.props.valueCallback(prop))
 
     return (
       <Dropdown