@paperless/angular 1.3.5 → 1.4.1

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.
@@ -3291,12 +3291,12 @@ let Table = class Table {
3291
3291
  target.type === 'checkbox') {
3292
3292
  return;
3293
3293
  }
3294
- const row = this._findRow($event.target);
3294
+ const row = this._findRow(target);
3295
+ const action = this._findRowAction(target);
3296
+ if (action) {
3297
+ return;
3298
+ }
3295
3299
  if (this.enableRowClick) {
3296
- const action = this._findRowAction($event.target);
3297
- if (action) {
3298
- return;
3299
- }
3300
3300
  const item = this.parsedItems[index];
3301
3301
  this.rowClick.emit({
3302
3302
  item,