Skip to content

Commit

Permalink
fix: get rid of unnecessary quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
annarieger committed Nov 14, 2022
1 parent 0c64775 commit 10eb361
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CapabilitiesUtil/CapabilitiesUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ class CapabilitiesUtil {
url: _isFunction(proxyFn) ? proxyFn(getMapUrl) : getMapUrl,
attributions: attributions,
params: {
'LAYERS': _get(layerObj, 'Name'),
'VERSION': wmsVersion
LAYERS: _get(layerObj, 'Name'),
VERSION: wmsVersion
}
})
});
Expand Down
2 changes: 1 addition & 1 deletion src/LayerUtil/LayerUtil.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('LayerUtil', () => {
source: new OlSourceImageWMS({
url: 'https://ows.terrestris.de/osm-gray/service',
params: {
'LAYERS': 'OSM-WMS'
LAYERS: 'OSM-WMS'
}
}),
properties: {
Expand Down

0 comments on commit 10eb361

Please sign in to comment.