We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34148c6 commit 5bf70daCopy full SHA for 5bf70da
src/containers/Projection.jsx
@@ -33,8 +33,12 @@ class Projection extends PureComponent {
33
const { projectionId } = this.props;
34
try {
35
Promise.all([
36
- api.getProjectionIncoming({ projectionId }).then((response) => formatXML(response.text())),
37
- api.getProjectionOutgoing({ projectionId }).then((response) => formatXML(response.text())),
+ api
+ .getProjectionIncoming({ projectionId })
38
+ .then((response) => formatXML(response.data || '')),
39
40
+ .getProjectionOutgoing({ projectionId })
41
42
])
43
.then(([incomingProjectionDocument, outgoingProjectionDocument]) => {
44
this.setState({
0 commit comments