Skip to content

Commit

Permalink
Merge branch 'switch-httpClient-to-esri-library' of https://github.co…
Browse files Browse the repository at this point in the history
…m/ngageoint/mage-server into switch-httpClient-to-esri-library
  • Loading branch information
ryanslatten committed Nov 14, 2024
2 parents 75a3841 + 53d392e commit 4d37e6a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/arcgis/service/src/ObservationsTransformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,9 @@ export class ObservationsTransformer {
if (fields != undefined) {
const fieldTitle = fields.get(title)
if (fieldTitle != undefined) {
title = fieldTitle
const sanitizedName = ObservationsTransformer.replaceSpaces(fieldTitle)
const sanitizedFormName = ObservationsTransformer.replaceSpaces(fields.name)
title = `${sanitizedFormName}_${sanitizedName}`.toLowerCase()
}
}
if (field.type == FormFieldType.Geometry) {
Expand Down

0 comments on commit 4d37e6a

Please sign in to comment.