@paperless/angular 2.22.0-alpha.25 → 2.22.0-alpha.26
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.
|
@@ -4523,7 +4523,8 @@ let TableComponent = class TableComponent {
|
|
|
4523
4523
|
if (!el) {
|
|
4524
4524
|
return null;
|
|
4525
4525
|
}
|
|
4526
|
-
if (el.dataset['isAction'] !==
|
|
4526
|
+
if (el.dataset['isAction'] !== undefined &&
|
|
4527
|
+
el.dataset['isAction'] !== 'false') {
|
|
4527
4528
|
return el;
|
|
4528
4529
|
}
|
|
4529
4530
|
if (el?.tagName?.toLowerCase() === 'p-table-row') {
|