diff --git a/src/Squidex/app/shared/components/history.component.ts b/src/Squidex/app/shared/components/history.component.ts index f8db8a210..1206aa50e 100644 --- a/src/Squidex/app/shared/components/history.component.ts +++ b/src/Squidex/app/shared/components/history.component.ts @@ -14,7 +14,7 @@ import { MessageBus, NotificationService } from 'framework'; import { AppComponentBase } from './../app-component-base'; import { AppsStoreService } from './../services/apps-store.service'; import { HistoryChannelUpdated } from './../utils/messages'; -import { HistoryService } from './../services/history.service'; +import { HistoryEventDto, HistoryService } from './../services/history.service'; import { UsersProviderService } from './../services/users-provider.service'; const REPLACEMENT_TEMP = '$TEMP$'; @@ -40,7 +40,7 @@ export class HistoryComponent extends AppComponentBase { return result; } - public events = + public events: Observable = Observable.timer(0, 10000) .merge(this.messageBus.of(HistoryChannelUpdated).delay(1000)) .switchMap(() => this.appName())