Skip to content

Commit 8059804

Browse files
committed
feat(manager-dashboard): add custom options preview and project aoi geometry input to street
1 parent 0188ba1 commit 8059804

File tree

1 file changed

+4
-2
lines changed
  • manager-dashboard/app/views/NewProject

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,8 @@ function NewProject(props: Props) {
474474
/>
475475
</InputSection>
476476
{(
477-
value.projectType === PROJECT_TYPE_FOOTPRINT
477+
(value.projectType === PROJECT_TYPE_FOOTPRINT
478+
|| value.projectType === PROJECT_TYPE_STREET)
478479
&& customOptions
479480
&& customOptions.length > 0
480481
) && (
@@ -532,7 +533,8 @@ function NewProject(props: Props) {
532533
)}
533534
{(value.projectType === PROJECT_TYPE_BUILD_AREA
534535
|| value.projectType === PROJECT_TYPE_CHANGE_DETECTION
535-
|| value.projectType === PROJECT_TYPE_COMPLETENESS) && (
536+
|| value.projectType === PROJECT_TYPE_COMPLETENESS
537+
|| value.projectType === PROJECT_TYPE_STREET) && (
536538
<InputSection
537539
heading="Project AOI Geometry"
538540
>

0 commit comments

Comments
 (0)