Browse Source

Test code reverted

pull/493/head
Sebastian 6 years ago
parent
commit
5def1bc9c0
  1. 4
      frontend/app/features/apps/pages/apps-page.component.ts

4
frontend/app/features/apps/pages/apps-page.component.ts

@ -52,11 +52,11 @@ export class AppsPageComponent implements OnInit {
} }
public ngOnInit() { public ngOnInit() {
const shouldShowOnboarding = true || this.onboardingService.shouldShow('dialog'); const shouldShowOnboarding = this.onboardingService.shouldShow('dialog');
this.appsState.apps.pipe(take(1)) this.appsState.apps.pipe(take(1))
.subscribe(apps => { .subscribe(apps => {
if (shouldShowOnboarding) { // && apps.length === 0) { if (shouldShowOnboarding && apps.length === 0) {
this.onboardingService.disable('dialog'); this.onboardingService.disable('dialog');
this.onboardingDialog.show(); this.onboardingDialog.show();
} else if (!this.uiOptions.get('hideNews')) { } else if (!this.uiOptions.get('hideNews')) {

Loading…
Cancel
Save