raise-common-lib 0.0.140 → 0.0.141
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/bundles/raise-common-lib.umd.js +3 -1
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/multi-tab/index.component.js +4 -2
- package/esm5/lib/layout/multi-tab/index.component.js +4 -2
- package/fesm2015/raise-common-lib.js +3 -1
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +3 -1
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
|
@@ -3362,12 +3362,14 @@ var MultiTabComponent = /** @class */ (function () {
|
|
|
3362
3362
|
this.addTab(url, title);
|
|
3363
3363
|
}
|
|
3364
3364
|
else {
|
|
3365
|
+
/** @type {?} */
|
|
3366
|
+
var pureUrl_1 = this.urlWithoutQuery(this.router.url);
|
|
3365
3367
|
/** @type {?} */
|
|
3366
3368
|
var target = this.flattenMenu.find((/**
|
|
3367
3369
|
* @param {?} ele
|
|
3368
3370
|
* @return {?}
|
|
3369
3371
|
*/
|
|
3370
|
-
function (ele) { return ele.url ===
|
|
3372
|
+
function (ele) { return ele.url === pureUrl_1; }));
|
|
3371
3373
|
if (target) {
|
|
3372
3374
|
if (target.url !== this.defaultTabUrl) {
|
|
3373
3375
|
/** @type {?} */
|