bt-core-app 2.0.204 → 2.0.206
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/dist/bt-core-app.js +2 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -44289,11 +44289,11 @@ function RU() {
|
|
|
44289
44289
|
i != null ? s = {
|
|
44290
44290
|
...e.query,
|
|
44291
44291
|
search: i
|
|
44292
|
-
} : delete s.search
|
|
44292
|
+
} : delete s.search;
|
|
44293
44293
|
let c = {
|
|
44294
44294
|
...e,
|
|
44295
44295
|
params: e.params,
|
|
44296
|
-
query: s,
|
|
44296
|
+
query: Object.keys(s).length > 0 ? s : void 0,
|
|
44297
44297
|
replace: o == !0
|
|
44298
44298
|
};
|
|
44299
44299
|
sc = !0, t.replace(c);
|
package/package.json
CHANGED