@valtimo/process-link 13.37.0 → 13.38.0

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.
@@ -300,7 +300,10 @@ class BuildingBlockStateService {
300
300
  setInputMappings(mappings) {
301
301
  this._inputMappings$.next((mappings ?? []).map(m => ({
302
302
  ...m,
303
- source: ensureDocPrefix(m.source),
303
+ // The source is left untouched: it either already carries its own prefix
304
+ // (doc:/case:/pv:) when it points to a value, or it is a fixed literal value
305
+ // that must be stored as-is. Forcing a doc:/ prefix here would corrupt fixed values.
306
+ source: m.source,
304
307
  target: ensureDocPrefix(m.target),
305
308
  })));
306
309
  }