Skip to content

Commit

Permalink
[fix] Restore the name of the variable onClickEventKind
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Bégaudeau <stephane.begaudeau@obeo.fr>
  • Loading branch information
sbegaudeau committed Sep 13, 2022
1 parent f5d7ab4 commit 5524ae1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ListComponent implements IComponent {

public static final String CANDIDATE_VARIABLE = "candidate"; //$NON-NLS-1$

public static final String CLICK_EVENT_KIND_VARIABLE = "clickEventKind"; //$NON-NLS-1$
public static final String CLICK_EVENT_KIND_VARIABLE = "onClickEventKind"; //$NON-NLS-1$

private ListComponentProps props;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ private ListDescription createList(boolean withStyle, boolean withConditionalSty
changeContext.setExpression("aql:candidate"); //$NON-NLS-1$
SetValue setValue = ViewFactory.eINSTANCE.createSetValue();
setValue.setFeatureName("name"); //$NON-NLS-1$
setValue.setValueExpression("aql:self.name + ' click event kind: ' + clickEventKind"); //$NON-NLS-1$
setValue.setValueExpression("aql:self.name + ' click event kind: ' + onClickEventKind"); //$NON-NLS-1$
changeContext.getChildren().add(setValue);
listDescription.getBody().add(changeContext);

Expand Down

0 comments on commit 5524ae1

Please sign in to comment.