Skip to content

Commit 4313fdb

Browse files
author
Peter Rushforth
committed
Fix missed isFirst / getPrevious method reconciliation between map-tile
and map-feature
1 parent 422b159 commit 4313fdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/map-tile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class HTMLTileElement extends HTMLElement {
180180
}
181181
} else {
182182
// get the previous tile's layer
183-
this._tileLayer = this.getPreviousTile()?._tileLayer;
183+
this._tileLayer = this.getPrevious()?._tileLayer;
184184
if (this._tileLayer) {
185185
this._tileLayer.addMapTile(this);
186186
}

0 commit comments

Comments
 (0)