Change test for individuals to cover null/undefined as well as empty
This commit is contained in:
parent
fc3c288472
commit
2d4d5feb8e
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<#if (individuals?size == 0)>
|
||||
<#assign noData = true />
|
||||
<#else>
|
||||
<#if individuals?has_content>
|
||||
<#assign noData = false />
|
||||
<#else>
|
||||
<#assign noData = true />
|
||||
</#if>
|
||||
|
||||
<#assign noDataNotification>
|
||||
|
|
Loading…
Add table
Reference in a new issue