Skip to content

Commit

Permalink
Merge branch 'release_21.09' into release_22.01
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Jun 20, 2022
2 parents 1d85f4f + b08fe47 commit da4438a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/Upload/RulesInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@ export default {
.get(
`${getAppRoot()}api/histories/${
Galaxy.currHistoryPanel.model.id
}/contents/${selectedDatasetId}/display`
}/contents/${selectedDatasetId}/display`,
// The Rule builder expects strings, we should not parse the respone to the default JSON type
{
responseType: "text",
}
)
.then((response) => {
this.sourceContent = response.data;
Expand Down

0 comments on commit da4438a

Please sign in to comment.