Skip to content

Commit

Permalink
[ACS-5638] hide checkboxes in file lists (#3357)
Browse files Browse the repository at this point in the history
* ACS-5638 hide checkboxes in file lists

* ACS-5838 change C279270 test not to use multiselect related function
  • Loading branch information
g-jaskowski authored Jul 26, 2023
1 parent fdc19ae commit 4019508
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/playwright/viewer/src/tests/viewer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ test.describe('viewer file', () => {
});

test('[C279270] Viewer opens when clicking the View action for a file', async ({ personalFiles }) => {
await personalFiles.dataTable.selectItem(randomDocxName);
await personalFiles.dataTable.getRowByName(randomDocxName).click();
await personalFiles.acaHeader.viewButton.click();
await personalFiles.dataTable.spinnerWaitForReload();
expect(await personalFiles.viewer.isViewerOpened(), 'Viewer is not opened').toBe(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
acaContextActions
[display]="documentDisplayMode$ | async"
[selectionMode]="'multiple'"
[multiselect]="true"
[multiselect]="false"
[currentFolderId]="node?.id"
[loading]="true"
[showHeader]="showHeader"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.TRASHCAN.TITLE' | translate }}</h1>
[display]="documentDisplayMode$ | async"
[currentFolderId]="'-trashcan-'"
[selectionMode]="'multiple'"
[multiselect]="true"
[multiselect]="false"
[navigate]="false"
[sortingMode]="'client'"
[imageResolver]="imageResolver"
Expand Down

0 comments on commit 4019508

Please sign in to comment.