Skip to content

Commit

Permalink
fix: corrected necessary check
Browse files Browse the repository at this point in the history
  • Loading branch information
novoj committed Sep 22, 2023
1 parent 09abb68 commit 827f9c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public String getReferenceName() {

@Override
public boolean isNecessary() {
return getArguments().length == 1 && getChildren().length == 1;
return getArguments().length == 1 && getChildren().length >= 1;
}

@AliasForParameter("filter")
Expand Down

0 comments on commit 827f9c4

Please sign in to comment.