FIX: Prettier to fix build (#8311)

This commit is contained in:
Mark VanLandingham 2019-11-07 12:07:08 -06:00 committed by GitHub
parent b3e8fbe7d4
commit f8d69253e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -44,7 +44,7 @@ export default Component.extend({
animate(isInitial) {
const $container = $(this.element);
const $list = $(this.element.querySelector(".components-list"));
if ($list.length === 0 || ENV.environment === 'test') {
if ($list.length === 0 || ENV.environment === "test") {
return;
}
const duration = 300;

View File

@ -22,9 +22,7 @@ export default class Connector {
);
}
const container = getOwner
? getOwner(mounted)
: mounted.container;
const container = getOwner ? getOwner(mounted) : mounted.container;
let view;