[ACA-1956] Libraries - remove toolbar experimental flag (#764)

* remove experimental flag

* e2e
This commit is contained in:
Cilibiu Bogdan 2018-10-29 22:48:57 +02:00 committed by Denys Vuika
parent eb034e59a9
commit 0b65ff46a0
2 changed files with 4 additions and 6 deletions

View File

@ -92,10 +92,10 @@ describe('Toolbar actions - single selection : ', () => {
xit('');
describe('General tests', () => {
it('actions not displayed for top level of File Libraries - [C213135]', async () => {
it('actions are displayed for top level of File Libraries - [C213135]', async () => {
await page.clickFileLibrariesAndWait();
await dataTable.selectItem(siteName);
expect(await toolbar.isEmpty()).toBe(true, 'toolbar not empty');
expect(await toolbar.isEmpty()).toBe(false, 'toolbar not displayed');
});
it('selected row is marked with a check circle icon - [C213134]', async () => {

View File

@ -7,10 +7,8 @@
<adf-toolbar class="inline">
<app-document-display-mode *ifExperimental="'cardview'"></app-document-display-mode>
<ng-container *ifExperimental="'extensions'">
<ng-container *ngFor="let entry of actions; trackBy: trackByActionId">
<aca-toolbar-action [actionRef]="entry"></aca-toolbar-action>
</ng-container>
<ng-container *ngFor="let entry of actions; trackBy: trackByActionId">
<aca-toolbar-action [actionRef]="entry"></aca-toolbar-action>
</ng-container>
</adf-toolbar>
</app-page-layout-header>