Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
fix overflow error on data source execution
Browse files Browse the repository at this point in the history
  • Loading branch information
evilpeach committed Sep 1, 2020
1 parent c530bf0 commit 6e5a70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scan/src/components/data-source/DataSourceExecute.re
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ let resultRender = result => {
| Error(err) =>
<>
<VSpacing size=Spacing.lg />
<div className=Styles.resultWrapper> <Text value=err /> </div>
<div className=Styles.resultWrapper> <Text value=err breakAll=true /> </div>
</>
| Success({returncode, stdout, stderr}) =>
<div className=Styles.resultContainer>
Expand Down

0 comments on commit 6e5a70a

Please sign in to comment.