We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8059804 commit c4f43c9Copy full SHA for c4f43c9
manager-dashboard/app/views/NewProject/utils.ts
@@ -34,6 +34,7 @@ import {
34
PROJECT_TYPE_FOOTPRINT,
35
PROJECT_TYPE_CHANGE_DETECTION,
36
PROJECT_TYPE_COMPLETENESS,
37
+ PROJECT_TYPE_STREET,
38
IconKey,
39
} from '#utils/common';
40
@@ -541,7 +542,9 @@ export function getGroupSize(projectType: ProjectType | undefined) {
541
542
return 120;
543
}
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) {
548
return 25;
549
550
0 commit comments