Skip to content

Commit

Permalink
Merge pull request googlecodelabs#345 from googlecodelabs/fix-feedback
Browse files Browse the repository at this point in the history
Make sure the productID sent for feedback is not obfuscated.
  • Loading branch information
Nicolas Garnier authored Sep 11, 2019
2 parents d824545 + dd44178 commit 6b537bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codelab-elements/google-codelab/google_codelab.js
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ class Codelab extends HTMLElement {
(e) => {
if ('userfeedback' in window) {
window['userfeedback']['api']['startFeedback']
({productId: '5143948'});
({'productId': '5143948'});
}
});
}
Expand Down

0 comments on commit 6b537bc

Please sign in to comment.