You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -156,7 +156,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
156
156
label="Visibility"
157
157
hint="Choose either 'public' or select the team for which this project should be displayed"
158
158
error={error?.visibility}
159
-
disabled={submissionPending||teamsPending}
159
+
disabled={disabled||teamsPending}
160
160
/>
161
161
<TextInput
162
162
name={'lookFor'asconst}
@@ -165,7 +165,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
165
165
error={error?.lookFor}
166
166
label="Look For"
167
167
hint="What should the users look for (e.g. buildings, cars, trees)? (25 chars max)"
168
-
disabled={submissionPending}
168
+
disabled={disabled}
169
169
/>
170
170
</div>
171
171
<TextArea
@@ -175,7 +175,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
175
175
error={error?.projectDetails}
176
176
label="Project Details"
177
177
hint="Enter the description for your project. (markdown syntax is supported)."
178
-
disabled={submissionPending}
178
+
disabled={disabled}
179
179
rows={4}
180
180
/>
181
181
<divclassName={styles.inputGroup}>
@@ -187,7 +187,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
187
187
hint="Make sure you have the rights to use the image. It should end with .jpg or .png."
188
188
showPreview
189
189
error={error?.projectImage}
190
-
disabled={submissionPending}
190
+
disabled={disabled}
191
191
/>
192
192
<divclassName={styles.verticalInputGroup}>
193
193
<SelectInput
@@ -200,7 +200,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
200
200
error={error?.tutorialId}
201
201
keySelector={valueSelector}
202
202
labelSelector={labelSelector}
203
-
disabled={submissionPending||tutorialsPending}
203
+
disabled={disabled||tutorialsPending}
204
204
nonClearable
205
205
/>
206
206
<NumberInput
@@ -210,7 +210,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
210
210
label="Verification Number"
211
211
hint="How many people do you want to see every tile before you consider it finished? (default is 3 - more is recommended for harder tasks, but this will also make project take longer)"
212
212
error={error?.verificationNumber}
213
-
disabled={submissionPending}
213
+
disabled={disabled}
214
214
/>
215
215
<NumberInput
216
216
name={'groupSize'asconst}
@@ -219,7 +219,7 @@ function BasicProjectInfoForm(props: Props<PartialProjectFormType>) {
219
219
label="Group Size"
220
220
hint="How big should a mapping session be? Group size refers to the number of tasks per mapping session."
0 commit comments