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$ -->
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||||
|
|
||||||
<#if (individuals?size == 0)>
|
<#if individuals?has_content>
|
||||||
<#assign noData = true />
|
|
||||||
<#else>
|
|
||||||
<#assign noData = false />
|
<#assign noData = false />
|
||||||
|
<#else>
|
||||||
|
<#assign noData = true />
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#assign noDataNotification>
|
<#assign noDataNotification>
|
||||||
|
|
Loading…
Add table
Reference in a new issue