Browse Source

fix(workflow): Fix install wizard (#6391)

Billy Vong 7 years ago
parent
commit
b8093569a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sentry/static/sentry/app/views/installWizard.jsx

+ 1 - 1
src/sentry/static/sentry/app/views/installWizard.jsx

@@ -60,7 +60,7 @@ export default class InstallWizard extends AsyncView {
     let data = {};
     Object.keys(options).forEach(optionName => {
       let option = options[optionName];
-      if (option.field.isSet) {
+      if (!option.field.isSet) {
         data[optionName] = option.value;
       }
     });