Skip to content

Commit

Permalink
Merge branch 'master' into feature/dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vixtir committed Dec 6, 2018
2 parents 8d571c5 + 6944a69 commit 56c22ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

export const environment = {
production: false,
host: 'https://dev.k8s.hydrosphere.io',
port: '',
host: 'http://localhost',
port: '8080',
apiUrl: '/api/v1',
uiUrl: '/ui/v1',
monitoringUrl: '/monitoring',
Expand Down
2 changes: 1 addition & 1 deletion src/modules/profiles/services/profiler.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class ProfilerService {
}

public getProfiles(modelVersionId: number, fieldName: string) {
return this.http.get(`${this.baseAPIUrl}/profiles/${modelVersionId}/${fieldName}`).pipe(
return this.http.get(`${this.baseAPIUrl}/profiles/${modelVersionId}/${fieldName}`, null, false).pipe(
map((res: Response): any => res));
}
}
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.27-SNAPSHOT
0.0.28-SNAPSHOT

0 comments on commit 56c22ce

Please sign in to comment.