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

yamer 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 b7cc1fd2d7a NO-ISSUE: Unify DMN boxed expression types help text 
(#2289)
b7cc1fd2d7a is described below

commit b7cc1fd2d7a7a969f13cd69136544fad840258d9
Author: Jozef Marko <[email protected]>
AuthorDate: Fri May 3 18:36:48 2024 +0200

    NO-ISSUE: Unify DMN boxed expression types help text (#2289)
---
 .../ExpressionDefinitionLogicTypeSelector.tsx                       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx
 
b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx
index 361f27af11a..cd097f15429 100644
--- 
a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx
+++ 
b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx
@@ -347,7 +347,7 @@ export function ExpressionDefinitionLogicTypeSelector({
       case "for":
         return (
           "A boxed iterator offers a visual representation of an iterator 
statement. " +
-          'For the for loop, the right part of the "for" displays the iterator 
variable name. The second row holds an expression representing the collection 
that will be iterated over. The expression in the "in" row MUST resolve to a 
collection.' +
+          'For the "for" loop, the right part of the "for" displays the 
iterator variable name. The second row holds an expression representing the 
collection that will be iterated over. The expression in the "in" row MUST 
resolve to a collection.' +
           " The last row contains the expression that will process each 
element of the collection."
         );
 
@@ -355,13 +355,13 @@ export function ExpressionDefinitionLogicTypeSelector({
         return (
           "A boxed iterator offers a visual representation of an iterator 
statement. " +
           'For the "every" loop, the right part of the "every" displays the 
iterator variable name. The second row holds an expression representing the 
collection that will be iterated over. The expression in the "in" row MUST 
resolve to a collection.' +
-          "The last line is an expression that will be evaluated on each item. 
The expression defined in the satisfies MUST resolve to a boolean."
+          'The last line is an expression that will be evaluated on each item. 
The expression defined in the "satisfies" MUST resolve to a boolean.'
         );
       case "some":
         return (
           "A boxed iterator offers a visual representation of an iterator 
statement. " +
           'For the "some" loop, the right part of the "some" displays the 
iterator variable name. The second row holds an expression representing the 
collection that will be iterated over. The expression in the "in" row MUST 
resolve to a collection. ' +
-          "The last line is an expression that will be evaluated on each item. 
The expression defined in the satisfies MUST resolve to a boolean."
+          'The last line is an expression that will be evaluated on each item. 
The expression defined in the "satisfies" MUST resolve to a boolean.'
         );
       case "filter":
         return (


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

Reply via email to