This is an automated email from the ASF dual-hosted git repository.

tiagobento pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git


The following commit(s) were added to refs/heads/main by this push:
     new c0677fdc565 kie-issues#1325: In FEEL `round` operations, the scale 
parameter must be in the range [−6111..6176] (#2431)
c0677fdc565 is described below

commit c0677fdc565c219aebb309786911f0b326965e24
Author: Jozef Marko <[email protected]>
AuthorDate: Mon Jun 17 16:35:25 2024 +0200

    kie-issues#1325: In FEEL `round` operations, the scale parameter must be in 
the range [−6111..6176] (#2431)
---
 packages/feel-input-component/src/FeelConfigs.ts | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/packages/feel-input-component/src/FeelConfigs.ts 
b/packages/feel-input-component/src/FeelConfigs.ts
index c4b596d9bc8..5094ad1b8c3 100644
--- a/packages/feel-input-component/src/FeelConfigs.ts
+++ b/packages/feel-input-component/src/FeelConfigs.ts
@@ -1225,7 +1225,7 @@ export const feelDefaultSuggestions = (): 
Monaco.languages.CompletionItem[] => {
         label: "round down(n, scale)",
         insertText: "round down($1, $2)",
         description:
-          "Returns `n` with given `scale` and rounding mode round down. If at 
least one of `n` or `scale` is null, the result is null.",
+          "Returns `n` with given `scale` and rounding mode round down. If at 
least one of `n` or `scale` is null, the result is null. The `scale` must be in 
the range [−6111..6176].",
         parameters: [
           ["n", `\`number\``],
           ["scale", `\`number\``],
@@ -1241,7 +1241,7 @@ export const feelDefaultSuggestions = (): 
Monaco.languages.CompletionItem[] => {
         label: "round half down(n, scale)",
         insertText: "round half down($1, $2)",
         description:
-          "Returns `n` with given `scale` and rounding mode round half down. 
If at least one of `n` or `scale` is null, the result is null.",
+          "Returns `n` with given `scale` and rounding mode round half down. 
If at least one of `n` or `scale` is null, the result is null. The `scale` must 
be in the range [−6111..6176].",
         parameters: [
           ["n", `\`number\``],
           ["scale", `\`number\``],
@@ -1257,7 +1257,7 @@ export const feelDefaultSuggestions = (): 
Monaco.languages.CompletionItem[] => {
         label: "round half up(n, scale)",
         insertText: "round half up($1, $2)",
         description:
-          "Returns `n` with given `scale` and rounding mode round half up. If 
at least one of `n` or `scale` is null, the result is null.",
+          "Returns `n` with given `scale` and rounding mode round half up. If 
at least one of `n` or `scale` is null, the result is null. The `scale` must be 
in the range [−6111..6176].",
         parameters: [
           ["n", `\`number\``],
           ["scale", `\`number\``],
@@ -1273,7 +1273,7 @@ export const feelDefaultSuggestions = (): 
Monaco.languages.CompletionItem[] => {
         label: "round up(n, scale)",
         insertText: "round up($1, $2)",
         description:
-          "Returns `n` with given `scale` and rounding mode round up. If at 
least one of `n` or `scale` is null, the result is null.",
+          "Returns `n` with given `scale` and rounding mode round up. If at 
least one of `n` or `scale` is null, the result is null. The `scale` must be in 
the range [−6111..6176].",
         parameters: [
           ["n", `\`number\``],
           ["scale", `\`number\``],


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to