Skip to content

Commit ebf82d9

Browse files
Merge pull request #668 from MapsPeople/fix/add-chat-flag
chore: update map-template to version 1.96.18 and add chat window flag
2 parents c553a2e + 2131d68 commit ebf82d9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/map-template/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.96.19] - 2026-03-26
9+
10+
### Fixed
11+
12+
- Added flag for chat window
13+
814
## [1.96.18] - 2026-03-26
915

1016
### Added

packages/map-template/src/components/MapTemplate/MapTemplate.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ function MapTemplate({ apiKey, gmApiKey, mapboxAccessToken, venue, locationId, p
809809
}, [language, appConfig, currentLanguage, setCurrentLanguage, userSelectedLanguage]);
810810

811811
return (
812-
<GeminiProvider enabled={true}>
812+
<GeminiProvider enabled={appConfig?.appSettings?.enableChat === 'true'}>
813813
<div className={`mapsindoors-map
814814
${currentAppView === appStates.DIRECTIONS ? 'mapsindoors-map--hide-elements' : 'mapsindoors-map--show-elements'}
815815
${(venuesInSolution.length > 1 && showVenueSelector) ? '' : 'mapsindoors-map--hide-venue-selector'}

0 commit comments

Comments
 (0)