Skip to content

Commit

Permalink
Fix viewer: serverdomain from location
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-lli committed Nov 15, 2023
1 parent 4900dd7 commit 4dc09a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/viewer/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const parameters = getParameters();
const app = parameters.get('app') ?? 'designer';
let server = parameters.get('server');
if (!server) {
server = getServerDomain().replace(app, '');
server = getServerDomain().replace(`/${app}`, '');
}
const id = 'ivy-glsp-process';
const diagramType = 'ivy-glsp-process';
Expand Down

0 comments on commit 4dc09a8

Please sign in to comment.