Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed Jan 17, 2025
1 parent edff78e commit d2ff258
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ export class ApexActionController {
throw new Error(nls.localize('error_parsing_yaml'));
}
const operations = parsed.paths
? Object.keys(parsed.paths).flatMap(path =>
Object.keys(parsed.paths[path]).map(operation => ({
name: parsed.paths[path][operation].operationId,
? Object.keys(parsed.paths).flatMap(p =>
Object.keys(parsed.paths[p]).map(operation => ({
name: parsed.paths[p][operation].operationId,
active: true
}))
)
Expand Down

0 comments on commit d2ff258

Please sign in to comment.