[AAE-5362] Add option to make actions button visible only on hover (#7117)

* [AAE-5362] Add option to make actions button visible only on hover

* [AAE-5362] Refactor

* Unrelated linting fixes
This commit is contained in:
Thomas Hunter
2021-06-22 17:28:38 +02:00
committed by GitHub
parent b5e4316c08
commit e2b8557f4b
7 changed files with 29 additions and 9 deletions

View File

@@ -407,7 +407,7 @@ describe('ContentMetadataComponent', () => {
component.displayEmpty = true;
fixture.detectChanges();
await fixture.whenStable()
await fixture.whenStable();
let defaultProp = queryDom(fixture);
let exifProp = queryDom(fixture, 'EXIF');
@@ -419,7 +419,7 @@ describe('ContentMetadataComponent', () => {
component.displayAspect = 'CUSTOM';
fixture.detectChanges();
await fixture.whenStable()
await fixture.whenStable();
defaultProp = queryDom(fixture);
exifProp = queryDom(fixture, 'EXIF');
@@ -431,7 +431,7 @@ describe('ContentMetadataComponent', () => {
component.displayAspect = 'Properties';
fixture.detectChanges();
await fixture.whenStable()
await fixture.whenStable();
defaultProp = queryDom(fixture);
exifProp = queryDom(fixture, 'EXIF');

View File

@@ -188,7 +188,7 @@ describe('DropdownSitesComponent', () => {
fixture.detectChanges();
await fixture.whenStable();
let options = debug.queryAll(By.css('mat-option'));
const options = debug.queryAll(By.css('mat-option'));
options[0].triggerEventHandler('click', null);
fixture.detectChanges();