@indice/ng-components 0.2.53 → 0.2.57

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/_styles.css CHANGED
@@ -862,7 +862,7 @@
862
862
  }
863
863
 
864
864
  .list-view-td-full {
865
- @apply w-full px-6 py-4 whitespace-normal break-words;
865
+ @apply w-full px-6 py-4 break-all;
866
866
  }
867
867
 
868
868
  .list-view-td-half {
@@ -2189,7 +2189,12 @@
2189
2189
  this.router.navigateByUrl('/', { skipLocationChange: true }).then(function () { return _this.router.navigateByUrl(_this.returnPath || '/'); });
2190
2190
  }
2191
2191
  else {
2192
- this.location.back();
2192
+ if (this.router.url.split('/(')[0]) {
2193
+ this.router.navigateByUrl(this.router.url.split('/(')[0]);
2194
+ }
2195
+ else {
2196
+ this.location.back();
2197
+ }
2193
2198
  }
2194
2199
  };
2195
2200
  SideViewLayoutComponent.prototype.emitClose = function () {