Skip to content

Commit

Permalink
fix(context): queryable must be saved
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed May 11, 2020
1 parent dba0e3e commit 2085a17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,13 @@ export class ContextService {
layerOptions: {
title: layer.options.title,
zIndex: layer.zIndex,
visible: layer.visible,
queryable: layer.queryable
visible: layer.visible
},
sourceOptions: {
type: layer.dataSource.options.type,
params: layer.dataSource.options.params,
url: layer.dataSource.options.url
url: layer.dataSource.options.url,
queryable: layer.queryable
}
};
if (opts.sourceOptions.type) {
Expand Down

0 comments on commit 2085a17

Please sign in to comment.