From 09b456f04704c108bab23d68726ba95882ff2ccb Mon Sep 17 00:00:00 2001 From: Dor-Karni Date: Wed, 11 May 2022 16:41:41 +0300 Subject: [PATCH] Fixing authority action menu --- cloudapp/src/app/catalog/main/main.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudapp/src/app/catalog/main/main.component.ts b/cloudapp/src/app/catalog/main/main.component.ts index dfb0c56..9f2ac81 100644 --- a/cloudapp/src/app/catalog/main/main.component.ts +++ b/cloudapp/src/app/catalog/main/main.component.ts @@ -41,8 +41,8 @@ export class CatalogMainComponent implements AfterViewInit { public ACTIONS_MENU_LIST = new Map([ [SearchType.Monographs, [new Action('Catalog.Results.Actions.View'), new Action('Catalog.Results.Actions.Import')]], [SearchType.Serials, [new Action('Catalog.Results.Actions.View'), new Action('Catalog.Results.Actions.Import')]], - [SearchType.Names, [new Action('Catalog.Results.Actions.View') /* , new Action('Catalog.Results.Actions.Import') */]], - [SearchType.UniformTitles, [new Action('Catalog.Results.Actions.View')/* , new Action('Catalog.Results.Actions.Import') */]], + [SearchType.Names, [new Action('Catalog.Results.Actions.View') , new Action('Catalog.Results.Actions.Import')]], + [SearchType.UniformTitles, [new Action('Catalog.Results.Actions.View'), new Action('Catalog.Results.Actions.Import')]], ]);