Skip to content

Commit 58d73f6

Browse files
committedAug 21, 2024
Adds support for structured inputs and for-each rules
1 parent 3b3d128 commit 58d73f6

File tree

119 files changed

+8737
-2025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+8737
-2025
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ keyvalue.js.tmpl
2727
#OS X things
2828
*.DS_Store*
2929

30+
# Jetbrains
31+
.idea/
32+
*.iml
33+
3034
node_modules/
3135
/*.yaml
3236
/_samples/

‎pkg/construct/dot.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func dotAttributes(r *Resource) map[string]string {
2222
func dotEdgeAttributes(e ResourceEdge) map[string]string {
2323
a := make(map[string]string)
2424
_ = e.Source.WalkProperties(func(path PropertyPath, nerr error) error {
25-
v := path.Get()
25+
v, _ := path.Get()
2626
if v == e.Target.ID {
2727
a["label"] = path.String()
2828
return StopWalk

0 commit comments

Comments
 (0)
Please sign in to comment.