Skip to content

Commit

Permalink
fix(Links): Unnecessary prefix removed (#5980)
Browse files Browse the repository at this point in the history
Co-authored-by: Ubuntu <[email protected]>
  • Loading branch information
vktrrdk and Ubuntu authored Dec 4, 2023
1 parent 473f36a commit 2e0a5ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/environments/environment.custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const NEW_SIMPLE_VM: string = window['env']['NEW_SIMPLE_VM'] || 'https://simplev

export const environment: any = {
WIKI_PRE: `https://${API_HOST}/wiki/`,
SIMPLEVM_WIKI_PRE: `https://${NEW_SIMPLE_VM}/wiki/`,
SIMPLEVM_WIKI_PRE: `${NEW_SIMPLE_VM}/wiki/`,
NEW_SVM_PORTAL_LINK: `${NEW_SIMPLE_VM}/portal/webapp/`,
vo: window['env']['VO'] || 3335,
voName: VO_NAME,
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const NEW_SIMPLE_VM: string = window['env']['NEW_SIMPLE_VM'] || 'https://simplev

export const environment: any = {
WIKI_PRE: 'https://portal-dev.denbi.de/wiki/',
SIMPLEVM_WIKI_PRE: `https://${NEW_SIMPLE_VM}/wiki/`,
SIMPLEVM_WIKI_PRE: `${NEW_SIMPLE_VM}/wiki/`,
NEW_SVM_PORTAL_LINK: 'http://localhost:4200/#/',
production: false,
vo: 3334,
Expand Down

0 comments on commit 2e0a5ef

Please sign in to comment.