Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
swbradshaw committed Sep 29, 2023
1 parent cb771bd commit 28a27de
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pagerduty/event_orchestration_path_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,12 @@ func flattenEventOrchestrationIncidentCustomFieldUpdates(v []*pagerduty.EventOrc
var result []interface{}

for _, i := range v {
pdaa := map[string]string{
custom_field := map[string]string{
"id": i.ID,
"value": i.Value,
}

result = append(result, pdaa)
result = append(result, custom_field)
}

return result
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 28a27de

Please sign in to comment.