brainloper-ui 14.0.30 → 14.0.31
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.
|
@@ -1680,6 +1680,15 @@ class DataTableComponent {
|
|
|
1680
1680
|
icon: 'fa-download',
|
|
1681
1681
|
tooltip: 'Exportar Registro',
|
|
1682
1682
|
},
|
|
1683
|
+
{
|
|
1684
|
+
action: 'addComment',
|
|
1685
|
+
conditionShowHeader: () => this.selectedRows.length === 1 &&
|
|
1686
|
+
this.configuration.addComment &&
|
|
1687
|
+
this.hasPermission('comment'),
|
|
1688
|
+
condition: () => this.configuration.addComment && this.hasPermission('comment'),
|
|
1689
|
+
icon: 'fa-comments',
|
|
1690
|
+
tooltip: 'Agregar Comentario',
|
|
1691
|
+
},
|
|
1683
1692
|
{
|
|
1684
1693
|
action: 'delete',
|
|
1685
1694
|
conditionShowHeader: () => this.selectedRows.length > 0 && this.configuration.delete && this.hasPermission('delete'),
|