bug fixes

This commit is contained in:
znetsixe
2025-11-30 09:24:29 +01:00
parent a81733c492
commit 52f1cf73b4
2 changed files with 2 additions and 1 deletions

View File

@@ -16,7 +16,7 @@
} }
}, },
"unit": { "unit": {
"default": "m3/s", "default": "l/s",
"rules": { "rules": {
"type": "string", "type": "string",
"description": "The default measurement unit for this configuration (e.g., 'meters', 'seconds', 'unitless')." "description": "The default measurement unit for this configuration (e.g., 'meters', 'seconds', 'unitless')."

View File

@@ -90,6 +90,7 @@ class MeasurementContainer {
this._currentType = typeName; this._currentType = typeName;
this._currentVariant = null; this._currentVariant = null;
this._currentPosition = null; this._currentPosition = null;
this._currentChildId = null;
return this; return this;
} }