From 5c5747c0dfb877fe5b60e67ee6c4fc3e5763fc2b Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 05:37:29 +0000 Subject: [PATCH 1/2] Update core to 2.9.1 --- core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core b/core index 4434616..033d062 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit 4434616378b7ccffc9ae185f40d619d3a01977ba +Subproject commit 033d062ac13b1b720955016e10fe146d0523c759 From b5234f22194c3282dfc9d5e10e3a509ac4251288 Mon Sep 17 00:00:00 2001 From: Johnny Hausman Date: Thu, 5 Feb 2026 01:03:58 -0600 Subject: [PATCH 2/2] [fix] now translations need to be included in our jsonAttributes --- platform/ABModel.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/platform/ABModel.js b/platform/ABModel.js index 48f2ea7..69b3602 100644 --- a/platform/ABModel.js +++ b/platform/ABModel.js @@ -854,6 +854,13 @@ module.exports = class ABModel extends ABModelCore { if (["json", "list"].indexOf(f.key) > -1) { jsonAttributes.push(f.columnName); } + if (["string", "LongText"].indexOf(f.key) > -1) { + if (f.isMultilingual) { + if (jsonAttributes.indexOf("translations") == -1) { + jsonAttributes.push("translations"); + } + } + } }); class MyModel extends Model {