Skip to content

Commit

Permalink
fix sandbox: fileName input was not used
Browse files Browse the repository at this point in the history
  • Loading branch information
jkissel committed Dec 12, 2023
1 parent 4dc0f72 commit 16d54a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Fixed
- In the sandbox, the `fileName` input was not used.

## 2.2.0 - 2023-12-05
### Changed
Expand Down
2 changes: 2 additions & 0 deletions sandbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
function getOptions ({
disabledUiFeatures,
expandNavigator,
fileName,
filter,
geometry,
hideMainHeaderAndFooter,
Expand All @@ -151,6 +152,7 @@
return {
disabledUiFeatures: disabledUiFeatures && disabledUiFeatures.split(','),
expandNavigator: (expandNavigator === 'on'),
fileName,
filter: filter && parseFilterVariables(filter),
geometry: geometry && JSON.parse(geometry),
hideMainHeaderAndFooter: (hideMainHeaderAndFooter === 'on'),
Expand Down

0 comments on commit 16d54a0

Please sign in to comment.