Skip to content

Commit

Permalink
Fixed bug in xtl editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krönert authored and Florian Krönert committed Aug 13, 2020
1 parent feb5e45 commit 1c071c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ let sha = Git.Information.getCurrentHash()
// version info
let major = "3"
let minor = "7"
let patch = "1"
let patch = "2"

// Follow SemVer scheme: http://semver.org/
let asmVersion = major + "." + minor + "." + patch
Expand Down
2 changes: 1 addition & 1 deletion src/web/Xrm.Oss.XTL.Editor/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export default class XtlEditor extends React.PureComponent<any, XtlEditorState>
entityName: "sdkmessageprocessingstepsecureconfig",
entity: {
secureconfig: JSON.stringify({
organizationUrl: (window as any).WebApiClient.GetApiUrl().substring(0, (window as any).WebApiClient.GetApiUrl().indexOf("/api/data/v"))
organizationUrl: WebApiClient.GetApiUrl().substring(0, WebApiClient.GetApiUrl().indexOf("/api/data/v"))
})
}
})
Expand Down

0 comments on commit 1c071c5

Please sign in to comment.