Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postback Template Action is not worked properly #13

Open
usagiga opened this issue Nov 9, 2020 · 0 comments
Open

Postback Template Action is not worked properly #13

usagiga opened this issue Nov 9, 2020 · 0 comments

Comments

@usagiga
Copy link

usagiga commented Nov 9, 2020

When Postback Template Action button is pushed,

  • If the button don't have text field, it sends data as Text Message.
  • If the button have displayText field, it sends data as Text Message.

if (action.type == "postback") {
if (action.text) {
reply += `<div class="chat-template-buttons-button" onclick="{sendPostback('${action.data}');sendTextMessage('${action.text}');}">${action.label}</div>`;
}
else {
reply += `<div class="chat-template-buttons-button" onclick="{sendTextMessage('${action.data}');}">${action.label}</div>`;
}
}

It seems to be wrong behavior.

Can I send Pull Request?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant