Skip to content

Commit d872427

Browse files
committed
fix linter
1 parent 608ec1f commit d872427

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/Map/doc/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ You can add markers to a map using the ``addMarker()`` method::
131131
;
132132

133133
Add Polylines
134-
~~~~~~~~~~~~
134+
~~~~~~~~~~~~~
135+
135136
You can add Polylines, which represents a path made by a series of `Point` instances
136137
$myMap->addPolyline(new Polyline(
137138
points: [

src/Map/src/Bridge/Google/assets/src/map_controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default class extends AbstractMapController<
3838
google.maps.InfoWindowOptions,
3939
google.maps.InfoWindow,
4040
google.maps.PolygonOptions,
41-
google.maps.Polygon
41+
google.maps.Polygon,
4242
google.maps.PolylineOptions,
4343
google.maps.Polyline
4444
> {

src/Map/src/Bridge/Leaflet/assets/src/map_controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import AbstractMapController from '@symfony/ux-map';
2-
import type { Point, MarkerDefinition, PolygonDefinition PolylineDefinition } from '@symfony/ux-map';
2+
import type { Point, MarkerDefinition, PolygonDefinition, PolylineDefinition } from '@symfony/ux-map';
33
import 'leaflet/dist/leaflet.min.css';
44
import * as L from 'leaflet';
55
import type { MapOptions as LeafletMapOptions, MarkerOptions, PopupOptions, PolygonOptions , PolylineOptions } from 'leaflet';

0 commit comments

Comments
 (0)