Skip to content

Commit fe0f736

Browse files
committed
Fix base address slash
1 parent aae7279 commit fe0f736

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

node-browser/src/app/browse/browse.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export class BrowseComponent implements OnInit {
239239
* @returns A URL to the browse route
240240
*/
241241
getExternalKWGPath(uri: string) {
242-
return `${environment.baseAddress}/browse/#${this.getExternalPrefix(uri)}`;
242+
return `${environment.baseAddress}browse/#${this.getExternalPrefix(uri)}`;
243243
}
244244

245245
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const environment = {
2-
baseAddress: 'https://stko-kwg.geog.ucsb.edu',
2+
baseAddress: 'https://stko-kwg.geog.ucsb.edu/',
33
graphEndpoint: 'https://stko-kwg.geog.ucsb.edu/sparql',
44
production: true,
55
};

0 commit comments

Comments
 (0)