Skip to content

Commit

Permalink
html messages settings fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NizamLZ committed Jan 11, 2018
1 parent e9a78f0 commit cc5b1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/embed/ana-web-chat-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
let stompEndpoint = base.getAttr(script, "endpoint");
let businessId = base.getAttr(script, "businessid");
let apiEndpoint = base.getAttr(script, "api-endpoint");
let htmlMessages = base.getAttr(script, "html-messages") || true;
let htmlMessages = (base.getAttr(script, "html-messages") === 'true' ? true : false)
let flowId = base.getAttr(script, "flowid");
let fileUploadUrl = "";

Expand Down

0 comments on commit cc5b1fa

Please sign in to comment.