Implement Fixes for Project Nautilus Integration (#12)

**Rationale:**

Some bugs were discovered in Project Nautilus integration.

**Changes:**

- Command and Telemetry paths now support `.`
- Telemetry Values now work with Boolean types in the frontend
- Constant Command Parameters no longer reset in the panel editor when you open the inspector

Reviewed-on: #12
Co-authored-by: Sergey Savelyev <sergeysav.nn@gmail.com>
Co-committed-by: Sergey Savelyev <sergeysav.nn@gmail.com>
This commit was merged in pull request #12.
This commit is contained in:
2026-01-02 12:29:35 -08:00
committed by sergeysav
parent 09eeceb212
commit 458c94c2ad
12 changed files with 43 additions and 38 deletions

View File

@@ -56,7 +56,7 @@ watch([command_info], ([cmd_info]) => {
break;
}
}
if (!model_param_value) {
if (model_param_value === undefined) {
let default_value: DynamicDataType = 0;
if (isNumericType(param.data_type)) {
default_value = 0;