You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ApplicationBase.json and the app have case-sensitive URL parameters. We’ve had user problems because people are used to generally ignoring case in the URL, so case-sensitive query parameters get mistyped.
Can we change map[key] in _urlToObject() to map[key.toLowerCase()] and the urlParams list in ApplicationBase.json to all lowercase?
The text was updated successfully, but these errors were encountered:
Actually, I don't think we want to do this because these values get mixed into the config. things like basemapUrl need to be the correct case to be easily mixed in.
ApplicationBase.json and the app have case-sensitive URL parameters. We’ve had user problems because people are used to generally ignoring case in the URL, so case-sensitive query parameters get mistyped.
Can we change
map[key
] in_urlToObject()
tomap[key.toLowerCase()]
and theurlParams
list in ApplicationBase.json to all lowercase?The text was updated successfully, but these errors were encountered: