Skip to content

Commit

Permalink
Work for surveyjs/survey-creator#4484 - fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Aug 30, 2023
1 parent 8810192 commit ddb54d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actions/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ export function createDropdownActionModelAdvanced(actionOptions: IAction, listOp
const listModel: ListModel = new ListModel(
listOptions.items,
(item: Action) => {
listOptions.onSelectionChanged(item),
innerPopupModel.toggleVisibility();
listOptions.onSelectionChanged(item);
innerPopupModel.toggleVisibility();
},
listOptions.allowSelection,
listOptions.selectedItem,
Expand Down

0 comments on commit ddb54d2

Please sign in to comment.