Skip to content

Commit

Permalink
Merge pull request #978 from Esri/item-type-updates
Browse files Browse the repository at this point in the history
Item type updates
  • Loading branch information
jmhauck authored Oct 22, 2024
2 parents 7c86031 + 65bc15d commit 895bc7c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/components/solution-item-accordion/solution-item-accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ export class SolutionItemAccordion {
"Form",
"QuickCapture Project",
"Workflow",
"Big Data Analytic",
"Real Time Analytic",
"Feed",
"Big Data Analytic (hosted)",
"Real Time Analytic (hosted)",
"Feed (hosted)",
"Tool",
"Notebook",
"Data Pipeline",
Expand Down Expand Up @@ -361,6 +361,16 @@ export class SolutionItemAccordion {
"Instant App" : _type;
}

_type = type === "Geoprocessing Service" ? "Tool" : _type;

_type = type === "Feed" ? "Feed (hosted)" : _type;

_type = type === "Real Time Analytic" ? "Real Time Analytic (hosted)" : _type;

_type = type === "Big Data Analytic" ? "Big Data Analytic (hosted)" : _type;

_type = type === "Vector Tile Service" ? "Tile Layer" : _type;

return _type;
}

Expand Down

0 comments on commit 895bc7c

Please sign in to comment.