@botpress/builtins
Advanced tools
Comparing version 10.46.4 to 10.46.5
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="10.46.5"></a> | ||
## [10.46.5](https://github.com/botpress/botpress/compare/v10.46.4...v10.46.5) (2018-10-06) | ||
### Bug Fixes | ||
* **builtins:** action-buttons showed <unsupported action> (fix [#970](https://github.com/botpress/botpress/issues/970)) ([#994](https://github.com/botpress/botpress/issues/994)) ([a2913dc](https://github.com/botpress/botpress/commit/a2913dc)) | ||
<a name="10.46.4"></a> | ||
@@ -8,0 +19,0 @@ ## [10.46.4](https://github.com/botpress/botpress/compare/v10.46.3...v10.46.4) (2018-10-06) |
@@ -17,3 +17,3 @@ 'use strict'; | ||
title: data.title, | ||
buttons: [data.action].map(a => { | ||
buttons: [data].map(a => { | ||
if (a.action === 'Say something') { | ||
@@ -42,3 +42,3 @@ return { | ||
title: data.title, | ||
buttons: [data.action].map(a => { | ||
buttons: [data].map(a => { | ||
if (a.action === 'Open URL') { | ||
@@ -63,3 +63,3 @@ return { | ||
title: data.title, | ||
buttons: [data.action].map(a => { | ||
buttons: [data].map(a => { | ||
if (a.action === 'Say something') { | ||
@@ -86,3 +86,3 @@ return { | ||
text: data.subtitle, | ||
actions: [data.action].map(a => { | ||
actions: [data].map(a => { | ||
if (a.action === 'Say something') { | ||
@@ -89,0 +89,0 @@ return { |
{ | ||
"name": "@botpress/builtins", | ||
"version": "10.46.4", | ||
"version": "10.46.5", | ||
"description": "The built-in stuff such as Content Elements, Content Renderers and Actions for Botpress X+", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
136657