blue-lm commented on issue #21829:
URL: https://github.com/apache/superset/issues/21829#issuecomment-1298211338
Looks like the issue is in the SuperSetClient.ts file? A hiddenform is
created in the code below, I guess we need to add the attributes that were
suggested by @baguskna to this hiddenform? Not sure how to do this though:
```
async postForm(url: string, payload: Record<string, any>, target = '_blank')
{
if (url) {
await this.ensureAuth();
const hiddenForm = document.createElement('form');
hiddenForm.action = url;
hiddenForm.method = 'POST';
hiddenForm.target = target;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]