Skip to content

Commit c4f43c9

Browse files
committed
feat(manager-dashboard): set default groupSize for street
1 parent 8059804 commit c4f43c9

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

manager-dashboard/app/views/NewProject/utils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import {
3434
PROJECT_TYPE_FOOTPRINT,
3535
PROJECT_TYPE_CHANGE_DETECTION,
3636
PROJECT_TYPE_COMPLETENESS,
37+
PROJECT_TYPE_STREET,
3738
IconKey,
3839
} from '#utils/common';
3940

@@ -541,7 +542,9 @@ export function getGroupSize(projectType: ProjectType | undefined) {
541542
return 120;
542543
}
543544

544-
if (projectType === PROJECT_TYPE_FOOTPRINT || projectType === PROJECT_TYPE_CHANGE_DETECTION) {
545+
if (projectType === PROJECT_TYPE_FOOTPRINT
546+
|| projectType === PROJECT_TYPE_CHANGE_DETECTION
547+
|| projectType === PROJECT_TYPE_STREET) {
545548
return 25;
546549
}
547550

0 commit comments

Comments
 (0)