Skip to content

Commit

Permalink
Remove visibleIf attribute for setValueExpression property
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Nov 1, 2023
1 parent 8c65860 commit 472c60a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/question.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2717,7 +2717,7 @@ Serializer.addClass("question", [
"enableIf:condition",
"resetValueIf:condition",
"setValueIf:condition",
{ name: "setValueExpression:expression", visibleIf: (obj: any): boolean => { return !!obj.setValueIf; } },
"setValueExpression:expression",
"defaultValue:value",
{
name: "defaultValueExpression:expression",
Expand Down
2 changes: 1 addition & 1 deletion src/question_matrixdropdowncolumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ Serializer.addClass(
"requiredIf:condition",
"resetValueIf:condition",
"setValueIf:condition",
{ name: "setValueExpression:expression", visibleIf: (obj: any): boolean => { return !!obj.setValueIf; } },
"setValueExpression:expression",
{
name: "showInMultipleColumns:boolean",
dependsOn: "cellType",
Expand Down

0 comments on commit 472c60a

Please sign in to comment.