diff --git a/src/components/ChatTeneoResponse.vue b/src/components/ChatTeneoResponse.vue index f2503af0..605bb899 100644 --- a/src/components/ChatTeneoResponse.vue +++ b/src/components/ChatTeneoResponse.vue @@ -30,7 +30,7 @@ - + + +
+ + + + + + + + + + + + +
+ @@ -136,51 +182,7 @@ - -
- - - - - - - - - - - - -
+ @@ -559,6 +561,8 @@ export default { if (tResp.hasEmotion() && tResp.getEmotion().indexOf("|") !== -1) { const rawEmotion = decodeURIComponent(tResp.getEmotion()); icon = `mdi-${rawEmotion.split("|")[1].trim()}`; + } else if (tResp.hasParameter("icon")) { + icon = `mdi-${tResp.getParameter("icon")}`; } } return icon;