We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e74061f commit 6dae958Copy full SHA for 6dae958
1 file changed
src/server/plugins/engine/components/ListFormComponent.ts
@@ -48,7 +48,12 @@ export class ListFormComponent extends FormComponent {
48
listType: List['type'] = 'string'
49
50
get items(): Item[] {
51
- return this.list?.items ?? []
+ return (
52
+ this.list?.items.map((item) => {
53
+ delete item.id // temporary workaround to prevent an ID being set, which invalidates #componentName fragments in the links
54
+ return item
55
+ }) ?? []
56
+ )
57
}
58
59
get values(): Item['value'][] {
0 commit comments