Browse Source

Fix: The edit box for the headers parameter of the invoke operator is always loading. #4265 (#4266)

### What problem does this PR solve?

Fix: The edit box for the headers parameter of the invoke operator is
always loading. #4265

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/nightly
balibabu 10 months ago
parent
commit
c75aa11ae6
No account linked to committer's email address
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      web/.umirc.ts

+ 4
- 1
web/.umirc.ts View File

@@ -30,7 +30,10 @@ export default defineConfig({
},
},
devtool: 'source-map',
copy: ['src/conf.json'],
copy: [
{ from: 'src/conf.json', to: 'dist/conf.json' },
{ from: 'node_modules/monaco-editor/min/vs/', to: 'dist/vs/' },
],
proxy: [
{
context: ['/api', '/v1'],

Loading…
Cancel
Save