mockaton 12.3.2 → 12.3.3

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "HTTP Mock Server",
4
4
  "type": "module",
5
- "version": "12.3.2",
5
+ "version": "12.3.3",
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./index.js",
package/src/client/app.js CHANGED
@@ -333,6 +333,7 @@ function renderRow(method, urlMask) {
333
333
  break
334
334
  case 'SELECT':
335
335
  oldEl.replaceChildren(...newEl.cloneNode(true).children)
336
+ oldEl.className = newEl.className
336
337
  oldEl.disabled = newEl.disabled
337
338
  oldEl.value = newEl.value
338
339
  break