Skip to content

Commit dedd455

Browse files
committed
feat(manager-dashboard): show custom options input for street tutorials
1 parent 2a458b5 commit dedd455

File tree

1 file changed

+5
-1
lines changed
  • manager-dashboard/app/views/NewTutorial

1 file changed

+5
-1
lines changed

manager-dashboard/app/views/NewTutorial/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ import {
6969
PROJECT_TYPE_COMPLETENESS,
7070
PROJECT_TYPE_CHANGE_DETECTION,
7171
PROJECT_TYPE_FOOTPRINT,
72+
PROJECT_TYPE_STREET,
7273
ProjectType,
7374
projectTypeLabelMap,
7475
} from '#utils/common';
@@ -761,7 +762,10 @@ function NewTutorial(props: Props) {
761762
autoFocus
762763
/>
763764
</InputSection>
764-
{value.projectType === PROJECT_TYPE_FOOTPRINT && (
765+
{(
766+
value.projectType === PROJECT_TYPE_FOOTPRINT
767+
|| value.projectType === PROJECT_TYPE_STREET
768+
) && (
765769
<InputSection
766770
heading="Custom Options"
767771
actions={(

0 commit comments

Comments
 (0)