Skip to content

Commit

Permalink
refactor(google-maps): use self-closing tags
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-moysiadis committed Nov 22, 2023
1 parent 3d4a6e5 commit 4bb0751
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/google-maps/map-circle/map-circle.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe('MapCircle', () => {
selector: 'test-app',
template: `
<google-map>
<map-circle
<map-circle
[options]="options"
[center]="center"
[radius]="radius"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('MapDirectionsRenderer', () => {
selector: 'test-app',
template: `
<google-map>
<map-directions-renderer
<map-directions-renderer
[options]="options"
[directions]="directions"
(directionsChanged)="handleDirectionsChanged()" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ describe('MapGroundOverlay', () => {
selector: 'test-app',
template: `
<google-map>
<map-ground-overlay
<map-ground-overlay
[url]="url"
[bounds]="bounds"
[clickable]="clickable"
Expand Down
2 changes: 1 addition & 1 deletion src/google-maps/map-kml-layer/map-kml-layer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ describe('MapKmlLayer', () => {
selector: 'test-app',
template: `
<google-map>
<map-kml-layer
<map-kml-layer
[options]="options"
[url]="url"
(kmlClick)="handleClick()"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ describe('MapMarkerClusterer', () => {
selector: 'test-app',
template: `
<google-map>
<map-marker-clusterer
<map-marker-clusterer
[ariaLabelFn]="ariaLabelFn"
[averageCenter]="averageCenter"
[batchSize]="batchSize"
Expand Down
2 changes: 1 addition & 1 deletion src/google-maps/map-marker/map-marker.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe('MapMarker', () => {
selector: 'test-app',
template: `
<google-map>
<map-marker
<map-marker
[title]="title"
[position]="position"
[label]="label"
Expand Down
2 changes: 1 addition & 1 deletion src/google-maps/map-polygon/map-polygon.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('MapPolygon', () => {
selector: 'test-app',
template: `
<google-map>
<map-polygon
<map-polygon
[options]="options"
[paths]="paths"
(polygonClick)="handleClick()"
Expand Down
2 changes: 1 addition & 1 deletion src/google-maps/map-polyline/map-polyline.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ describe('MapPolyline', () => {
selector: 'test-app',
template: `
<google-map>
<map-polyline
<map-polyline
[options]="options"
[path]="path"
(polylineClick)="handleClick()"
Expand Down
2 changes: 1 addition & 1 deletion src/google-maps/map-rectangle/map-rectangle.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe('MapRectangle', () => {
selector: 'test-app',
template: `
<google-map>
<map-rectangle
<map-rectangle
[options]="options"
[bounds]="bounds"
(boundsChanged)="handleBoundsChange()"
Expand Down

0 comments on commit 4bb0751

Please sign in to comment.