fix: #1808, arrays and blocks now save localized nested field data upon reordering rows

This commit is contained in:
James
2023-01-09 12:58:13 -05:00
parent 78af86f9d1
commit ee54c1481c
8 changed files with 105 additions and 8 deletions

View File

@@ -282,6 +282,17 @@ export interface GroupField {
potentiallyEmptyGroup: {
text?: string;
};
groupInRow: {
field?: string;
secondField?: string;
thirdField?: string;
};
secondGroupInRow: {
field?: string;
nestedGroup: {
nestedField?: string;
};
};
createdAt: string;
updatedAt: string;
}