@things-factory/meta-ui 7.0.65 → 7.0.66
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.
|
@@ -324,7 +324,7 @@ export class MetaUiUtil {
|
|
|
324
324
|
const logic = settings[idx].logic;
|
|
325
325
|
const c = new Compartment({ record: recordData, rowIdx });
|
|
326
326
|
const evalFunc = c.evaluate(`(record, rowIdx) => {
|
|
327
|
-
|
|
327
|
+
${logic}
|
|
328
328
|
}`);
|
|
329
329
|
if (evalFunc(recordData, rowIdx)) {
|
|
330
330
|
return {
|
|
@@ -347,7 +347,7 @@ export class MetaUiUtil {
|
|
|
347
347
|
const logic = settings[idx].logic;
|
|
348
348
|
const c = new Compartment({ record: recordData, rowIdx });
|
|
349
349
|
const evalFunc = c.evaluate(`(record, rowIdx) => {
|
|
350
|
-
|
|
350
|
+
${logic}
|
|
351
351
|
}`);
|
|
352
352
|
if (evalFunc(recordData, rowIdx)) {
|
|
353
353
|
return {
|