Skip to content

Commit b23ebea

Browse files
authored
Fix bad merge in css rename, bump version to 1.15.1 (#195)
* Fix bad merge, bump version to 1.15.1 * Fix changelog Related to #185 and #83
1 parent 0b30d43 commit b23ebea

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66

77
### 🐞 Bug fixes
88

9+
- *...Add new stuff here...*
10+
11+
## 1.15.1
12+
13+
### 🐞 Bug fixes
14+
915
- Add void return for some method declaration to match TS strict mode (#194)
16+
- Fix css leftovers (#83)
1017

1118
## 1.15.0
1219

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "maplibre-gl",
33
"description": "BSD licensed community fork of mapbox-gl, a WebGL interactive maps library",
4-
"version": "1.15.0",
4+
"version": "1.15.1",
55
"main": "dist/maplibre-gl.js",
66
"style": "dist/maplibre-gl.css",
77
"license": "BSD-3-Clause",

src/ui/map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@ class Map extends Camera {
22862286
const container = this._container;
22872287
container.classList.add('maplibregl-map');
22882288

2289-
const canvasContainer = this._canvasContainer = DOM.create('div', 'mapboxgl-canvas-container', container);
2289+
const canvasContainer = this._canvasContainer = DOM.create('div', 'maplibregl-canvas-container', container);
22902290
if (this._interactive) {
22912291
canvasContainer.classList.add('maplibregl-interactive');
22922292
}

0 commit comments

Comments
 (0)