Skip to content

Commit

Permalink
fix(google-maps): incorrect event name (#18027)
Browse files Browse the repository at this point in the history
Looks like a regression from #17845 where the name of the `zoom_changed` even was mistyped.

Fixes #18026.
  • Loading branch information
crisbeto authored and mmalerba committed Jan 6, 2020
1 parent 0429dfc commit f2cbc06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google-maps/google-map/google-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy {
* See
* https://developers.google.com/maps/documentation/javascript/reference/map#Map.zoom_changed
*/
@Output() zoomChanged: Observable<void> = this._eventManager.getLazyEmitter<void>('zoomChanged');
@Output() zoomChanged: Observable<void> = this._eventManager.getLazyEmitter<void>('zoom_changed');

constructor(
private readonly _elementRef: ElementRef,
Expand Down

0 comments on commit f2cbc06

Please sign in to comment.