Skip to content

Commit

Permalink
wip: fix handling of wmts doc
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Jul 8, 2022
1 parent bd2bd50 commit 34d35d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lambda-tiler/src/wmts.capability.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class WmtsCapabilities {

buildKeywords(layer: TileSetRaster): VNodeElement {
if (layer.tileSet.category == null) return V('ows:Keywords');
return V('ows:Keywords', V('ows:Keyword', layer.tileSet.category));
return V('ows:Keywords', [V('ows:Keyword', layer.tileSet.category)]);
}

buildStyle(): VNodeElement {
Expand Down

0 comments on commit 34d35d2

Please sign in to comment.