Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/angular_sample_app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import '@googlemaps/extended-component-library/place_building_blocks/place_data_
import '@googlemaps/extended-component-library/place_picker.js';
import '@googlemaps/extended-component-library/place_overview.js';

import {Component, ElementRef, ViewChild} from '@angular/core';
import {Component, ElementRef, ViewChild, ChangeDetectionStrategy} from '@angular/core';
import type {OverlayLayout} from '@googlemaps/extended-component-library/overlay_layout.js';
import type {PlacePicker} from '@googlemaps/extended-component-library/place_picker.js';

Expand All @@ -26,7 +26,7 @@ const DEFAULT_ZOOM = 4;
const DEFAULT_ZOOM_WITH_LOCATION = 16;

@Component({
standalone: false,
changeDetection: ChangeDetectionStrategy.Eager,standalone: false,
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
Expand Down
Loading