Derek Berry
Derek Berry
Had the same issue on the [TeamList Gsuite Add-On Sample](https://developers.google.com/gsuite/add-ons/teams-addon-sample). remove line 281 ` var onSubmitAction = CardService.newAction() .setFunctionName("onSearch") .setLoadIndicator(CardService.LoadIndicator.SPINNER) // .setPersistValues(true) ;` Also I had to turn Off/On the...
This is what I do... My backButton.html element: ``` :host { display: block; } Polymer({ is: 'back-button', goback: function () { window.history.back(); } }); ``` May help someone..