Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
Push API updates
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannicimolin committed Apr 10, 2020
1 parent 30e3f5f commit 0fb98b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/packages/api_client/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.3-SNAPSHOT
4.3.1-SNAPSHOT
2 changes: 1 addition & 1 deletion frontend/packages/api_client/src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class Configuration {
constructor(private configuration: ConfigurationParameters = {}) {}

get basePath(): string {
return this.configuration.basePath || BASE_PATH;
return this.configuration.basePath != null ? this.configuration.basePath : BASE_PATH;
}

get fetchApi(): FetchAPI {
Expand Down

0 comments on commit 0fb98b9

Please sign in to comment.