remove delete provission from country list

This commit is contained in:
Gagan7900
2026-08-12 11:03:03 +05:30
parent 08b2993cb0
commit 758ceedce6
@@ -124,10 +124,10 @@ export class CountryList implements OnInit {
type: 'activate', label: 'Activate', icon: 'ti ti-toggle-left', className: 'text-success',
visible: row => !row.isActive, disabled: row => this.statusChangingId() === row.id || this.deletingId() === row.id
},
{
type: 'delete', label: 'Delete', icon: 'ti ti-trash', className: 'text-danger',
disabled: row => this.statusChangingId() === row.id || this.deletingId() === row.id
}
// {
// type: 'delete', label: 'Delete', icon: 'ti ti-trash', className: 'text-danger',
// disabled: row => this.statusChangingId() === row.id || this.deletingId() === row.id
// }
]);
ngOnInit(): void {