Skip to content

Commit

Permalink
[ACS-4126] Removed tags from libraries (#3093)
Browse files Browse the repository at this point in the history
* ACS-4126 Removed tags from libraries

* ACS-4126 Fixed e2e
  • Loading branch information
AleksanderSklorz committed Mar 28, 2023
1 parent fddec8c commit 1553142
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 36 deletions.
4 changes: 2 additions & 2 deletions e2e/suites/list-views/file-libraries.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion e2e/suites/search/search-results-libraries.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
33 changes: 0 additions & 33 deletions projects/aca-content/assets/app.extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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
}
]
}
Expand Down

0 comments on commit 1553142

Please sign in to comment.