We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In a mutation form, adding multiple workflows to run the mutation on results in an error snackbar.
This is because the response we get from the UIServer is in an odd format:
{ "data": { "trigger": { "result": [ { "trigger": { "result": [ { "id": "~user/thing/run1", "response": [ true, "d78b43de-7172-4135-afe6-346edbb02cec" ] } ], "__typename": "Trigger" } }, { "trigger": { "result": [ { "id": "~user/thing/run2", "response": [ true, "dba6b04d-a618-4b40-89ca-21f96721f214" ] } ], "__typename": "Trigger" } } ], "__typename": "Trigger" } } }
(I think cylc/cylc-uiserver#290 deals with this, but will need to revisit it)
And this is not what the API-on-the-fly code expects
cylc-ui/src/utils/aotf.js
Lines 954 to 962 in 3d64d28
The text was updated successfully, but these errors were encountered:
MetRonnie
No branches or pull requests
In a mutation form, adding multiple workflows to run the mutation on results in an error snackbar.
This is because the response we get from the UIServer is in an odd format:
(I think cylc/cylc-uiserver#290 deals with this, but will need to revisit it)
And this is not what the API-on-the-fly code expects
cylc-ui/src/utils/aotf.js
Lines 954 to 962 in 3d64d28
The text was updated successfully, but these errors were encountered: