Small Hotfix for sentiment issue with certain speeches
This commit is contained in:
parent
abd25d9ca6
commit
1189f0e5a8
1 changed files with 6 additions and 1 deletions
|
@ -52,7 +52,12 @@
|
|||
<#list s.content as c>
|
||||
<#if sentimentIcons??>
|
||||
<#assign index = c?index>
|
||||
<#assign sentimentIcon = sentimentIcons[index]>
|
||||
<#if sentimentIcons[index]??>
|
||||
<#assign sentimentIcon = sentimentIcons[index]>
|
||||
<#else>
|
||||
<#assign sentimentIcon = "fas fa-meh sentiment-neutral">
|
||||
</#if>
|
||||
|
||||
</#if>
|
||||
<#include "speechContent.ftl">
|
||||
</#list>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue