Skip to content

Commit

Permalink
Merge pull request #33985 from dimagi/orangejenny-patch-16
Browse files Browse the repository at this point in the history
JS function swap
  • Loading branch information
orangejenny committed Jan 18, 2024
2 parents 3ba8be0 + d7ea997 commit 8f3fff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corehq/apps/cloudcare/templates/form_entry/templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div tabindex="-1" class ="gr" data-bind="
css: {
'gr-no-children': $data.children().length === 0,
'gr-has-no-questions': _.all($data.children(), function(d) { return d.type() !== 'grouped-question-tile-row' }),
'gr-has-no-questions': $data.children().every(function(d) { return d.type() !== 'grouped-question-tile-row' }),
'gr-has-no-nested-questions': !$data.hasAnyNestedQuestions(),
'panel panel-default': collapsible,
'repetition': isRepetition,
Expand Down

0 comments on commit 8f3fff9

Please sign in to comment.