Skip to content

Commit 92a01c1

Browse files
committed
Initial nested attribute support
1 parent 24d0140 commit 92a01c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/fwserver/schema_propose_new_plan.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ func proposeNewNestedAttribute(ctx context.Context, s fwschema.Schema, attr fwsc
192192
if config.IsNull() {
193193
break
194194
}
195-
// newVal = proposedNewObjectAttributes(ctx, s, attr, path, prior, config)
195+
newVal = proposedNewObjectAttributes(ctx, s, attr, path, prior, config)
196196
case fwschema.NestingModeList:
197-
//newVal = proposedNewListNested(ctx, s, attr, path, prior, config)
197+
newVal = proposedNewListNested(ctx, s, attr, path, prior, config)
198198
case fwschema.NestingModeMap:
199199
// TODO: handle map
200200
case fwschema.NestingModeSet:

0 commit comments

Comments
 (0)