diff --git a/admin-ui/src/app/features/resources/users/view/view.component.ts b/admin-ui/src/app/features/resources/users/view/view.component.ts index 8a40676c..43608b1a 100644 --- a/admin-ui/src/app/features/resources/users/view/view.component.ts +++ b/admin-ui/src/app/features/resources/users/view/view.component.ts @@ -86,7 +86,7 @@ export class ViewComponent implements OnInit, OnDestroy { getUserConfigs() { let url = this.router.url.split('/')[3]; if(url === "zoneuser"){ - this.isUserMatMenu = true; + this.isUserMatMenu = false; this.dataStorageService .getSpecFileForMasterDataEntity("zoneuser") .subscribe(response => { @@ -203,6 +203,10 @@ export class ViewComponent implements OnInit, OnDestroy { ); } }); + } else { + this.actionButtons = this.users.map(() => JSON.parse(JSON.stringify(this.userConfig.actionButtons.filter( + value => value.showIn.toLowerCase() === 'ellipsis' + )))); } } else { this.noData = true;