Skip to content

Commit

Permalink
[Backport 2020.02.xx] #5961: Fix Timeline showing when adding WMTS la…
Browse files Browse the repository at this point in the history
…yer (#6058) (#6065)
  • Loading branch information
myrdstom authored Oct 21, 2020
1 parent e6bd155 commit def3cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/epics/dimension.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = {
action$
.ofType(ADD_LAYER)
.filter(
({ layer = {} } = {}) => layer.id && layer.url && layer.name && (layer.type === "wms" || layer.type === "wmts")
({ layer = {} } = {}) => layer.id && layer.url && layer.name && (layer.type === "wms")
)
// find out possible multidim URL
// TODO: find out a better way to extract or discover multidim URL
Expand Down

0 comments on commit def3cb8

Please sign in to comment.