Skip to content

Commit

Permalink
fix: fix url
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov committed Jun 20, 2023
1 parent 6ed8bd7 commit a2cfe0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kotlin-playground",
"version": "1.28.0-alpha.2",
"version": "1.28.0-alpha.3",
"description": "Self-contained component to embed in websites for running Kotlin code",
"keywords": [
"kotlin",
Expand Down Expand Up @@ -42,14 +42,15 @@
"monkberry-directives": "4.0.8",
"monkberry-events": "4.0.8",
"monkberry-loader": "4.0.9",
"sass": "^1.62.1",
"postcss-loader": "3.0.0",
"query-string": "^6.5.0",
"sass": "^1.62.1",
"sass-loader": "10.2.0",
"shelljs": "^0.8.3",
"style-loader": "^0.23.1",
"svg-fill-loader": "0.0.8",
"svg-url-loader": "^2.3.2",
"terser-webpack-plugin": "^4.2.3",
"url-search-params": "1.1.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const API_URLS = {
url = `${this.server}/api/${version}/compiler/translate?ir=true`;
break;
case TargetPlatform.WASM:
url = `${this.server}/api/${version}/compiler/translate?ir=true&compiler=wasm`;
url = `${this.server}api/${version}/compiler/translate?ir=true&compiler=wasm`;
break;
case TargetPlatform.JUNIT:
url = `${this.server}/api/${version}/compiler/test`;
Expand Down

0 comments on commit a2cfe0a

Please sign in to comment.