Skip to content

Commit 6b11489

Browse files
authored
fix: Small change to test workflow changes in PR #96. (#98)
1 parent 805e618 commit 6b11489

File tree

1 file changed

+1
-1
lines changed
  • samples/place-autocomplete-element

1 file changed

+1
-1
lines changed

samples/place-autocomplete-element/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async function initMap(): Promise<void> {
3939
// [START maps_place_autocomplete_element_listener]
4040
// Add the gmp-placeselect listener, and display the results.
4141
//@ts-ignore
42-
placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => {
42+
placeAutocomplete.addEventListener('gmp-placeselect', async ({ place }) => { // TODO: gmp-placeselect -> gmp-select
4343
await place.fetchFields({ fields: ['displayName', 'formattedAddress', 'location'] });
4444

4545
selectedPlaceTitle.textContent = 'Selected Place:';

0 commit comments

Comments
 (0)