Skip to content

Commit

Permalink
chore(ui): fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Feb 2, 2024
1 parent a9ff272 commit 7e4712d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,10 @@ export class AsyncApiMapperService {
maximum: schema.exclusiveMaximum
? schema.exclusiveMinimum
: schema.maximum,
exclusiveMinimum: schema.minimum == schema.exclusiveMinimum ? true : false,
exclusiveMaximum: schema.maximum == schema.exclusiveMaximum ? true : false,
exclusiveMinimum:
schema.minimum == schema.exclusiveMinimum ? true : false,
exclusiveMaximum:
schema.maximum == schema.exclusiveMaximum ? true : false,
};
}

Expand Down

0 comments on commit 7e4712d

Please sign in to comment.