Skip to content

Commit

Permalink
#559 fixed script loading behind reverse proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Jul 5, 2022
1 parent be9bf34 commit cceaa0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default {
},
created() {
if (!this.newConfig) {
axiosInstance.get('/admin/scripts/' + encodeURIComponent(this.configName) + '/code')
axiosInstance.get('admin/scripts/' + encodeURIComponent(this.configName) + '/code')
.then(({data}) => {
this.code = data.code
this.originalCode = data.code
Expand Down

0 comments on commit cceaa0c

Please sign in to comment.