Merge branch 'star-projects' into star-projects2, bringing star-projects onto master

This commit is contained in:
2025-09-27 14:23:35 -06:00
20 changed files with 1146 additions and 68 deletions

View File

@@ -301,7 +301,11 @@ export const PlatformServiceMixin = {
}
// Convert SQLite JSON strings to objects/arrays
if (column === "contactMethods" || column === "searchBoxes") {
if (
column === "contactMethods" ||
column === "searchBoxes" ||
column === "starredPlanHandleIds"
) {
value = this._parseJsonField(value, []);
}