mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
fix compilation issues (#7319)
This commit is contained in:
parent
9043fcbc57
commit
a0347016d8
4 changed files with 8 additions and 10 deletions
|
|
@ -24,7 +24,7 @@ The **If condition** node triggers one of the outgoing flows depending on the gi
|
|||
<img style={{padding: '10px'}} className="screenshot-full" src="/img/workflows/nodes/if-condition-node.png" alt="If Condition Node" />
|
||||
</div>
|
||||
<br/>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- If you click on the <b>If condition</b> node, a dialog box will appear on the right that accepts a logical expression.
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ For this guide, we've created a MonthlySales table in PostgreSQL with 5 columns
|
|||
|
||||
We can now see a node named *postgresql1* connected to the outgoing flow of the **Start trigger** node on the canvas. Click on the *postgresql1* node, a dialog box will show up on the right.
|
||||
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- Click on the input field next to the PostgreSQL logo and rename the node to <i>fetchSalesData</i>.
|
||||
|
|
@ -77,7 +77,7 @@ Create an outgoing flow from the *fetchSalesData* node that we just created by c
|
|||
|
||||
The **JavaScript** node lets you run JavaScript code to transform data and perform other tasks. The JavaScript code executes on the server side to protect sensitive logic and data from exposure to the client. In our example, we are using it to convert the result from the previous node into a string.
|
||||
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- In the JavaScript node, the data retrieved from the <i>fetchSalesData</i> node can be accessed using the property - <b>fetchSalesData.data</b>.
|
||||
|
|
@ -146,7 +146,7 @@ The **If condition** node accepts a logical expression and evaluates it. The out
|
|||
|
||||
Click on the **If condition** node, a dialog box will appear on the right.
|
||||
|
||||
<div style={{display: 'flex', paddingTop:'10px', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- Enter the below logical expression in the input area: <br/>
|
||||
|
|
@ -229,5 +229,3 @@ Continue learning about the different elements of ToolJet Workflows using the be
|
|||
**[Overview of Logs](/docs/workflows/logs)** <br/>
|
||||
**[Permissions in Workflows](/docs/workflows/permissions)**
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ The **If condition** node triggers one of the outgoing flows depending on the gi
|
|||
<img style={{padding: '10px'}} className="screenshot-full" src="/img/workflows/nodes/if-condition-node.png" alt="If Condition Node" />
|
||||
</div>
|
||||
<br/>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- If you click on the <b>If condition</b> node, a dialog box will appear on the right that accepts a logical expression.
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ For this guide, we've created a MonthlySales table in PostgreSQL with 5 columns
|
|||
|
||||
We can now see a node named *postgresql1* connected to the outgoing flow of the **Start trigger** node on the canvas. Click on the *postgresql1* node, a dialog box will show up on the right.
|
||||
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- Click on the input field next to the PostgreSQL logo and rename the node to <i>fetchSalesData</i>.
|
||||
|
|
@ -77,7 +77,7 @@ Create an outgoing flow from the *fetchSalesData* node that we just created by c
|
|||
|
||||
The **JavaScript** node lets you run JavaScript code to transform data and perform other tasks. The JavaScript code executes on the server side to protect sensitive logic and data from exposure to the client. In our example, we are using it to convert the result from the previous node into a string.
|
||||
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- In the JavaScript node, the data retrieved from the <i>fetchSalesData</i> node can be accessed using the property - <b>fetchSalesData.data</b>.
|
||||
|
|
@ -146,7 +146,7 @@ The **If condition** node accepts a logical expression and evaluates it. The out
|
|||
|
||||
Click on the **If condition** node, a dialog box will appear on the right.
|
||||
|
||||
<div style={{display: 'flex', paddingTop:'10px', justifyContent: 'space-between', flexDirection: window.innerWidth <= 768 ? 'column' : 'row', alignItems:'center'}}>
|
||||
<div style={{display: 'flex', justifyContent: 'space-between', alignItems:'center'}}>
|
||||
<div style={{flex: 1, padding: '0', alignment:'center'}}>
|
||||
<p style={{textAlign: 'left'}}>
|
||||
- Enter the below logical expression in the input area: <br/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue