소스 검색

Fix an issue where "Not Set" was not an option

In Wizard Options, boolean switches didn't have "Not Set" as an option.
Sergiu Miclea 5 년 전
부모
커밋
bfefea1cfb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/organisms/WizardOptions/WizardOptions.tsx

+ 1 - 1
src/components/organisms/WizardOptions/WizardOptions.tsx

@@ -339,7 +339,7 @@ class WizardOptions extends React.Component<Props> {
 
       return {
         column,
-        component: this.renderOptionsField(field),
+        component: this.renderOptionsField(usableField),
         field: usableField,
       }
     })