File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
manager-dashboard/app/views Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -324,7 +324,8 @@ export const projectFormSchema: ProjectFormSchema = {
324324 [ 'projectType' ] ,
325325 [ 'customOptions' ] ,
326326 ( formValues ) => {
327- if ( formValues ?. projectType === PROJECT_TYPE_FOOTPRINT ) {
327+ if ( formValues ?. projectType === PROJECT_TYPE_FOOTPRINT
328+ || formValues ?. projectType === PROJECT_TYPE_STREET ) {
328329 return {
329330 customOptions : {
330331 keySelector : ( key ) => key . value ,
Original file line number Diff line number Diff line change @@ -265,15 +265,15 @@ export const defaultStreetCustomOptions: PartialTutorialFormType['customOptions'
265265 title : 'Yes' ,
266266 icon : 'checkmark-outline' ,
267267 iconColor : colorKeyToColorMap . green ,
268- description : '' ,
268+ description : 'the object you are looking for is in the image. ' ,
269269 } ,
270270 {
271271 optionId : 2 ,
272272 value : 0 ,
273273 title : 'No' ,
274274 icon : 'close-outline' ,
275275 iconColor : colorKeyToColorMap . red ,
276- description : '' ,
276+ description : 'the object you are looking for is NOT in the image. ' ,
277277 } ,
278278 {
279279 optionId : 3 ,
@@ -775,7 +775,8 @@ export const tutorialFormSchema: TutorialFormSchema = {
775775 } ) ,
776776 } ;
777777
778- if ( formValues ?. projectType === PROJECT_TYPE_FOOTPRINT ) {
778+ if ( formValues ?. projectType === PROJECT_TYPE_FOOTPRINT
779+ || formValues ?. projectType === PROJECT_TYPE_STREET ) {
779780 return {
780781 customOptions : customOptionField ,
781782 } ;
You can’t perform that action at this time.
0 commit comments