@tiledesk/tiledesk-tybot-connector 0.2.43 → 0.2.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/models/TiledeskChatbotUtil.js +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
available on:
|
|
6
6
|
▶️ https://www.npmjs.com/package/@tiledesk/tiledesk-tybot-connector
|
|
7
7
|
|
|
8
|
+
# v0.2.44
|
|
9
|
+
- Fix attributes not showing in button.value
|
|
10
|
+
|
|
8
11
|
# v0.2.43
|
|
9
12
|
- DirCode: tiledeskVars renamed in "context"
|
|
10
13
|
- DirCode: tiledeskVars.setVar renamed in context.setAttribute()
|
|
@@ -321,6 +321,12 @@ class TiledeskChatbotUtil {
|
|
|
321
321
|
console.log("button.link filled:", button.link)
|
|
322
322
|
}
|
|
323
323
|
}
|
|
324
|
+
if (button.value) {
|
|
325
|
+
button.value = filler.fill(button.value, variables);
|
|
326
|
+
if (log) {
|
|
327
|
+
console.log("button.value filled:", button.value)
|
|
328
|
+
}
|
|
329
|
+
}
|
|
324
330
|
});
|
|
325
331
|
}
|
|
326
332
|
else if (log) {
|