From 758ceedce6b859e2dab515a2fc29520eb2a10cd6 Mon Sep 17 00:00:00 2001 From: Gagan7900 <54118395+Gagan7900@users.noreply.github.com> Date: Wed, 12 Aug 2026 11:03:03 +0530 Subject: [PATCH] remove delete provission from country list --- .../countries/pages/country-list/country-list.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/features/global-masters/countries/pages/country-list/country-list.ts b/src/app/features/global-masters/countries/pages/country-list/country-list.ts index faf66fb9..828d3f79 100644 --- a/src/app/features/global-masters/countries/pages/country-list/country-list.ts +++ b/src/app/features/global-masters/countries/pages/country-list/country-list.ts @@ -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 {