howdyai / botkit-starter-web

Botkit Anywhere - a starter kit for building a bot that lives in your website or app
https://botkit.ai
MIT License
113 stars 75 forks source link

Quick replies to reply with 'Title' instead of 'Payload' #39

Open lsshawn opened 6 years ago

lsshawn commented 6 years ago

I figured that 'payload' can be used for thread matching. Is there a way to do it in this web chatbot?

I checked the received middleware and the quick reply title is not there.

adantoscano commented 6 years ago

You have to change that in front-end part. See public folder.

samar14641 commented 5 years ago

@lsshawn public/client.js Make this change:

el.onclick = function() {
                  that.quickReply(reply.text);  // changed from reply.payload
                }

It should work.