@decaf-ts/for-angular 0.1.41 → 0.1.42

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.
@@ -15047,7 +15047,11 @@ let TableComponent = class TableComponent extends ListComponent {
15047
15047
  const handlerFn = await handler(this, event, uid);
15048
15048
  return typeof handlerFn === 'function' ? handlerFn() : handlerFn;
15049
15049
  }
15050
- await this.handleRedirect(event, uid, action);
15050
+ const win = getWindow();
15051
+ const selection = win.getSelection();
15052
+ if (!selection || selection.toString().length === 0) {
15053
+ return await this.handleRedirect(event, uid, action);
15054
+ }
15051
15055
  }
15052
15056
  /**
15053
15057
  * @description Navigates to the CRUD action route for the specified row.