File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 4.0.3 - 2022-07-11
2+ ### Fixed
3+ - Fixed $id embed issue (Fixes #353 )
4+
15## 4.0.2 - 2022-06-08
26### Fixed
37- Misc fixes via @davidwebca & @jamesedmonston
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ class EmbedOptions extends StaticOptions
2222 // Properties
2323 // =========================================================================
2424
25- /** @var string The ID of the map (unique ID will be generated if null) */
26- public string $ id ;
25+ /** @var string|null The ID of the map (unique ID will be generated if null) */
26+ public ? string $ id = null ;
2727
2828 /** @var array Options to be passed to the JS map */
2929 public array $ options = [];
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public function init ()
3030 VueAsset::class,
3131 ];
3232
33- if (getenv ('ETHER_ENVIRONMENT ' ))
33+ if (getenv ('ETHER_ENVIRONMENT ' ) === ' true ' )
3434 {
3535 $ this ->js = [
3636 'https://localhost:8080/app.js ' ,
You can’t perform that action at this time.
0 commit comments