@trudb/tru-common-lib 0.2.75 → 0.2.76

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.
@@ -2382,13 +2382,13 @@ class TruContextFilters {
2382
2382
  valueFor = (tableName) => {
2383
2383
  let choice = this.filters.find(f => f.selectedChoice.table === tableName)?.selectedChoice;
2384
2384
  if (!choice)
2385
- throw new Error('ContextFilterChoice not found. Possible invalid configuration.');
2385
+ return undefined;
2386
2386
  return choice.ref;
2387
2387
  };
2388
2388
  value = () => {
2389
2389
  let choice = this.filters.find(f => f.selectedChoice)?.selectedChoice;
2390
2390
  if (!choice)
2391
- throw new Error('ContextFilterChoice not found. Possible invalid configuration.');
2391
+ return undefined;
2392
2392
  return choice;
2393
2393
  };
2394
2394
  label = () => {