Browse Source

Bugfix for api name.

pull/65/head
Sebastian Stehle 9 years ago
parent
commit
8c360573a6
  1. 2
      src/Squidex/app/shared/components/app.component-base.ts

2
src/Squidex/app/shared/components/app.component-base.ts

@ -19,7 +19,7 @@ export abstract class AppComponentBase extends ComponentBase {
) {
super(notifications);
this.appName$ = this.appsStore.selectedApp.map(a => a!.name).take(1);
this.appName$ = this.appsStore.selectedApp.filter(a => !!a).map(a => a!.name);
}
public appName(): Observable<string> {

Loading…
Cancel
Save