@trudb/tru-common-lib 0.0.277 → 0.0.279
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.
- package/esm2020/lib/classes/tru-predicate.mjs +3 -3
- package/esm2020/lib/services/tru-app-environment.mjs +2 -2
- package/fesm2015/trudb-tru-common-lib.mjs +3 -3
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +3 -3
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -669,8 +669,8 @@ class TruPredicate {
|
|
|
669
669
|
return new TruPredicate(breezePredicate, null, null, null);
|
|
670
670
|
};
|
|
671
671
|
if (typeof field === 'string') {
|
|
672
|
-
var args =
|
|
673
|
-
args[
|
|
672
|
+
var args = propertyQueryPath?.slice(0);
|
|
673
|
+
args[args.length - 1] += field;
|
|
674
674
|
args.push(operator);
|
|
675
675
|
args.push(value);
|
|
676
676
|
this._breezePredicate = new breeze.Predicate(args);
|
|
@@ -976,7 +976,7 @@ class TruBreezeContext {
|
|
|
976
976
|
|
|
977
977
|
class TruAppEnvironment {
|
|
978
978
|
constructor() {
|
|
979
|
-
this._activeUserRef = new BehaviorSubject(
|
|
979
|
+
this._activeUserRef = new BehaviorSubject(3);
|
|
980
980
|
this._isSaving = new BehaviorSubject(false);
|
|
981
981
|
this._saveComplete = new BehaviorSubject(null);
|
|
982
982
|
this._revertComplete = new BehaviorSubject(null);
|