@iebh/tera-fy 1.14.1 → 1.14.2

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.14.2](https://github.com/IEBH/TERA-fy/compare/v1.14.1...v1.14.2) (2024-11-01)
4
+
5
+
6
+ ### fix
7
+
8
+ * Wrong body text binding with UIConfirm ([ecd870c](https://github.com/IEBH/TERA-fy/commit/ecd870c4460a7021853220a6bc34756a9f425430))
9
+
3
10
  ## [1.14.1](https://github.com/IEBH/TERA-fy/compare/v1.14.0...v1.14.1) (2024-10-17)
4
11
 
5
12
 
@@ -1483,7 +1483,7 @@ export default class TeraFyServer {
1483
1483
  return this.requestFocus(()=>
1484
1484
  app.service('$prompt').dialog({
1485
1485
  title: settings.title,
1486
- body: text,
1486
+ body: settings.body,
1487
1487
  isHtml: settings.isHtml,
1488
1488
  buttons: [
1489
1489
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/tera-fy",
3
- "version": "1.14.1",
3
+ "version": "1.14.2",
4
4
  "description": "TERA website worker",
5
5
  "scripts": {
6
6
  "dev": "esbuild --platform=browser --format=esm --bundle lib/terafy.client.js --outfile=dist/terafy.js --minify --serve --servedir=.",