Skip to content

Commit 58fb137

Browse files
committed
removed unnecessary files
1 parent f997426 commit 58fb137

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ jobs:
2020
java-version: 17
2121
- uses: actions/checkout@v3
2222
with:
23-
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
23+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2424
ref: ${{ github.event.pull_request.head.sha }}
2525
- name: Build Java
2626
run: |
2727
mvn clean compile -DskipTests -f ./server/api-service/pom.xml
2828
- name: SonarCloud Scan
2929
uses: SonarSource/sonarcloud-github-action@master
3030
env:
31-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
3232
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
33-
SONAR_SCANNER_OPTS: "-Dsonar.javascript.node.maxspace=8192 -Xmx512m"

docs/business-logic-in-apps/write-javascript/transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Compared with inline code in `{{ }}`, transformer supports multi-line code block
66

77
## Quickstart
88

9-
Click **+ New > Transformer** in a query editor to create a transformer.
9+
Click **+ New > Transfromer** in a query editor to create a transformer.
1010

1111
Then write your JS code in the transformer. You can click **Preview** to get the return value and access it by `transformerName.value` in your app.
1212

docs/lowcoder-extension/use-third-party-libraries-in-apps/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Lowcoder provides some JavaScript built-in libraries for use.
1616
Built-in Libraries can be used directly everywhere where you can use JavaScript.
1717

1818
```
19-
// lodash
19+
// loadash
2020
return _.chunk(['a', 'b', 'c', 'd'], 2);
2121
// => [['a', 'b'], ['c', 'd']]
2222
@@ -107,11 +107,11 @@ You can check popular CDNs if they host your desired library as a minified packa
107107

108108
### Import / bind at the app level
109109

110-
Navigate to the Individualization page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.
110+
Navigate to the settings page and then click the plus sign **+** under the **JavaScript library** tab. Paste the **library** link and click **Add New**. Lowcoder will now check, if the external library will be compatible and securely usable.
111111

112112
You can also click the download icon to quickly download any recommended JS library.
113113

114-
<figure><img src="../../.gitbook/assets/Individualization JavaScript Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>
114+
<figure><img src="../../.gitbook/assets/App Editor External Libraries.png" alt=""><figcaption><p>Bind an external JS Library to an individual App</p></figcaption></figure>
115115

116116
Now, you can create a JS query and insert code.
117117

0 commit comments

Comments
 (0)