eservices-core 1.0.503 → 1.0.505

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.503
2
+ * eservices-core v1.0.505
3
3
  * (c) 2023 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -3243,10 +3243,14 @@ function getTableCell$1(cell, rowValue) {
3243
3243
  if (cell.onClick)
3244
3244
  addHandleClick(cell.onClick);
3245
3245
  if (cell.link) {
3246
- cellNodeChildren.push(vue.h(vueRouter.RouterLink, {
3247
- to: cell.link(rowValue),
3248
- }));
3249
- addClass('list-cell-link');
3246
+ try {
3247
+ const link = vue.h(vueRouter.RouterLink, { to: cell.link(rowValue) });
3248
+ cellNodeChildren.push(link);
3249
+ addClass('list-cell-link');
3250
+ }
3251
+ catch (e) {
3252
+ console.warn('Error handle: Add Router link to cell', e);
3253
+ }
3250
3254
  }
3251
3255
  if (cell.href) {
3252
3256
  cellNodeChildren.push(vue.h('a', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.503",
3
+ "version": "1.0.505",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {