Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Oct 18, 2024
1 parent 611add7 commit be92963
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.10.36] - October 18th 2024
Add appLayout watch, set respectLayerDefinitionExpression, add snaitizer

## [0.10.35] - October 17th 2024
Delivery for Reporter AGOL-2024.R03 - UAT #966
Add delete-dialog
Expand Down Expand Up @@ -861,4 +864,5 @@ Recover from test releases
[0.10.33]: https://github.com/Esri/solution.js/compare/v0.10.32...v0.10.33 "v0.10.33"
[0.10.34]: https://github.com/Esri/solution.js/compare/v0.10.33...v0.10.34 "v0.10.34"
[0.10.35]: https://github.com/Esri/solution.js/compare/v0.10.34...v0.10.35 "v0.10.35"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.10.35...HEAD "Unreleased Changes"
[0.10.36]: https://github.com/Esri/solution.js/compare/v0.10.35...v0.10.36 "v0.10.36"
[Unreleased]: https://github.com/Esri/solution.js/compare/v0.10.36...HEAD "Unreleased Changes"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@esri/solutions-components",
"version": "0.10.35",
"version": "0.10.36",
"description": "Web Components for Esri's Solutions Applications",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/components/crowdsource-manager/crowdsource-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ export class CrowdsourceManager {
*/
protected _showMapInCardView(): void {
if (this.appLayout !== "mapView") {
const fullMapView = document.getElementById('full-map-view').childNodes[0];
const fullMapView = document.getElementById('full-map-view')?.childNodes[0];
const splitMapClass = document.getElementById('card-mapView');
if (fullMapView) {
splitMapClass.appendChild(fullMapView);
Expand All @@ -1270,7 +1270,7 @@ export class CrowdsourceManager {
* @protected
*/
protected _showMapInFullView(): void {
const splitMap = document.getElementById('card-mapView').childNodes[0];
const splitMap = document.getElementById('card-mapView')?.childNodes[0];
const fullMapViewClass = document.getElementById('full-map-view');
if (splitMap) {
fullMapViewClass.appendChild(splitMap);
Expand Down

0 comments on commit be92963

Please sign in to comment.