diff --git a/scilog/src/app/app.module.ts b/scilog/src/app/app.module.ts
index 4d6905d8..cc7876ab 100644
--- a/scilog/src/app/app.module.ts
+++ b/scilog/src/app/app.module.ts
@@ -87,6 +87,7 @@ import { ResizedDirective } from '@shared/directives/resized.directive';
import { OverviewTableComponent } from './overview/overview-table/overview-table.component';
import { MatPaginatorModule } from '@angular/material/paginator';
import { MatSortModule } from '@angular/material/sort';
+import { OverviewScrollComponent } from './overview/overview-scroll/overview-scroll.component';
const appConfigInitializerFn = (appConfig: AppConfigService) => {
return () => appConfig.loadAppConfig();
@@ -133,7 +134,8 @@ const appConfigInitializerFn = (appConfig: AppConfigService) => {
SearchWindowComponent,
TaskComponent,
ResizedDirective,
- OverviewTableComponent
+ OverviewTableComponent,
+ OverviewScrollComponent
],
imports: [
BrowserModule,
diff --git a/scilog/src/app/core/remote-data.service.ts b/scilog/src/app/core/remote-data.service.ts
index c4bbc4f0..5754b8ff 100644
--- a/scilog/src/app/core/remote-data.service.ts
+++ b/scilog/src/app/core/remote-data.service.ts
@@ -622,7 +622,7 @@ export class SearchDataService extends RemoteDataService {
return this._searchString;
}
public set searchString(value: string) {
- this._searchString = value;
+ this._searchString = value ?? '';
}
protected addIncludeScope(): Object {
diff --git a/scilog/src/app/core/toolbar/toolbar.component.html b/scilog/src/app/core/toolbar/toolbar.component.html
index f032fa52..e3c4f467 100644
--- a/scilog/src/app/core/toolbar/toolbar.component.html
+++ b/scilog/src/app/core/toolbar/toolbar.component.html
@@ -12,7 +12,7 @@
-
+