mockaton 8.26.0 → 8.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Dashboard.js +4 -2
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "HTTP Mock Server",
4
4
  "type": "module",
5
- "version": "8.26.0",
5
+ "version": "8.26.1",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",
package/src/Dashboard.js CHANGED
@@ -383,7 +383,7 @@ function MockSelector({ broker }) {
383
383
  selected = Strings.proxied
384
384
  files.push(selected)
385
385
  }
386
-
386
+
387
387
  return (
388
388
  r('select', {
389
389
  onChange,
@@ -400,7 +400,9 @@ function MockSelector({ broker }) {
400
400
  r('option', {
401
401
  value: file,
402
402
  selected: file === selected
403
- }, `${status} ${ext} ${extractComments(file).join(' ')}`)
403
+ }, file === Strings.proxied
404
+ ? Strings.proxied
405
+ : `${status} ${ext} ${extractComments(file).join(' ')}`)
404
406
  )
405
407
  })))
406
408
  }