From 1553142364fe18c0f3715ace7dff7cea4f3ea431 Mon Sep 17 00:00:00 2001 From: AleksanderSklorz <115619721+AleksanderSklorz@users.noreply.github.com> Date: Tue, 28 Mar 2023 19:34:23 +0200 Subject: [PATCH] [ACS-4126] Removed tags from libraries (#3093) * ACS-4126 Removed tags from libraries * ACS-4126 Fixed e2e --- e2e/suites/list-views/file-libraries.test.ts | 4 +-- .../search/search-results-libraries.test.ts | 2 +- .../aca-content/assets/app.extensions.json | 33 ------------------- 3 files changed, 3 insertions(+), 36 deletions(-) diff --git a/e2e/suites/list-views/file-libraries.test.ts b/e2e/suites/list-views/file-libraries.test.ts index 10f35d85b..ce7e734a8 100755 --- a/e2e/suites/list-views/file-libraries.test.ts +++ b/e2e/suites/list-views/file-libraries.test.ts @@ -102,7 +102,7 @@ describe('File Libraries', () => { }); it('[C217095] has the correct columns', async () => { - const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility', 'Tags']; + const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility']; const actualColumns = await dataTable.getColumnHeadersText(); await expect(actualColumns).toEqual(expectedColumns); @@ -167,7 +167,7 @@ describe('File Libraries', () => { }); it('[C289893] has the correct columns', async () => { - const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility', 'Tags']; + const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility']; const actualColumns = await dataTable.getColumnHeadersText(); await expect(actualColumns).toEqual(expectedColumns); diff --git a/e2e/suites/search/search-results-libraries.test.ts b/e2e/suites/search/search-results-libraries.test.ts index 88bc59fc7..7b1aace78 100644 --- a/e2e/suites/search/search-results-libraries.test.ts +++ b/e2e/suites/search/search-results-libraries.test.ts @@ -187,7 +187,7 @@ describe('Search results - libraries', () => { await searchInput.searchFor(site1.name); await dataTable.waitForBody(); - const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility', 'Tags']; + const expectedColumns = ['Name', 'Description', 'My Role', 'Visibility']; const actualColumns = await dataTable.getColumnHeadersText(); await expect(actualColumns).toEqual(expectedColumns); diff --git a/projects/aca-content/assets/app.extensions.json b/projects/aca-content/assets/app.extensions.json index 8da0cd8c8..6dbec9b16 100644 --- a/projects/aca-content/assets/app.extensions.json +++ b/projects/aca-content/assets/app.extensions.json @@ -2158,17 +2158,6 @@ "template": "app.columns.libraryStatus", "desktopOnly": true, "order": 50 - }, - { - "id": "app.filer.tags", - "template": "app.columns.tags", - "key": "tags", - "title": "APP.DOCUMENT_LIST.COLUMNS.TAGS", - "class": "adf-full-width adf-expand-cell-4", - "type": "text", - "sortable": false, - "desktopOnly": true, - "order": 60 } ], "favoriteLibraries": [ @@ -2223,17 +2212,6 @@ "template": "app.columns.libraryStatus", "desktopOnly": true, "order": 50 - }, - { - "id": "app.filer.tags", - "template": "app.columns.tags", - "key": "tags", - "title": "APP.DOCUMENT_LIST.COLUMNS.TAGS", - "class": "adf-full-width adf-expand-cell-4", - "type": "text", - "sortable": false, - "desktopOnly": true, - "order": 60 } ], "shared": [ @@ -2572,17 +2550,6 @@ "template": "app.columns.libraryStatus", "desktopOnly": true, "order": 50 - }, - { - "id": "app.filer.tags", - "template": "app.columns.tags", - "key": "tags", - "title": "APP.DOCUMENT_LIST.COLUMNS.TAGS", - "class": "adf-full-width adf-expand-cell-4", - "type": "text", - "sortable": false, - "desktopOnly": true, - "order": 60 } ] }