Skip to content

Commit

Permalink
[Fix] uncaught exception on layerFilterParamChanged event (#4042)
Browse files Browse the repository at this point in the history
  • Loading branch information
mind84 authored Dec 22, 2023
1 parent 290a34c commit 1ecbe1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/src/legacy/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,7 @@ window.lizMap = function() {
}

for ( var lName in config.layers ) {
var lConfig = config.layers[lName];
let lConfig = config.layers[lName];

// Do not request if the layer has no popup
if ( lConfig.popup != 'True' )
Expand Down

2 comments on commit 1ecbe1a

@3liz-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest weekly run of end2end "playwright" tests failed with this latest commit on the branch release_3_6 😣

CC @nboisteault and @Gustry, please have a look to the logs. Maybe it's a false positive ?

Visit https://github.com/3liz/lizmap-web-client/actions/runs/7318714482

@3liz-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest weekly run of end2end "playwright" tests failed with this latest commit on the branch release_3_6 😣

CC @nboisteault and @Gustry, please have a look to the logs. Maybe it's a false positive ?

Visit https://github.com/3liz/lizmap-web-client/actions/runs/7374564283

Please sign in to comment.