File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
samples/place-autocomplete-data-session Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6666 env :
6767 CI : true
6868 - name : Push test report to artifacts
69- uses : actions/upload-artifact@v2
69+ uses : actions/upload-artifact@v4
7070 if : failure()
7171 with :
7272 name : Test Results
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ async function makeAcRequest(input) {
5656 // Create a link for the place, add an event handler to fetch the place.
5757 const a = document . createElement ( 'a' ) ;
5858 a . addEventListener ( 'click' , ( ) => {
59- onPlaceSelected ( placePrediction . toPlace ( ) ) ;
59+ onPlaceSelected ( placePrediction ! . toPlace ( ) ) ;
6060 } ) ;
61- a . innerText = placePrediction . text . toString ( ) ;
61+ a . innerText = placePrediction ! . text . toString ( ) ;
6262
6363 // Create a new list element.
6464 const li = document . createElement ( 'li' ) ;
You can’t perform that action at this time.
0 commit comments