diff --git a/backend/src/api/bisq.ts b/backend/src/api/bisq.ts index 2013e4365..acf8ecf0e 100644 --- a/backend/src/api/bisq.ts +++ b/backend/src/api/bisq.ts @@ -27,12 +27,12 @@ class Bisq { this.loadBisqDumpFile(); let fsWait: NodeJS.Timeout | null = null; - fs.watch(config.BSQ_BLOCKS_DATA_PATH, (event: string, filename: string) => { + fs.watch(config.BSQ_BLOCKS_DATA_PATH, () => { if (fsWait) { clearTimeout(fsWait); } fsWait = setTimeout(() => { - console.log(`${filename} file change detected.`); + console.log(`Change detected in the Bisq data folder.`); this.loadBisqDumpFile(); }, 1000); }); diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index e25791775..7ff1e770b 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -3,7 +3,7 @@ import { NgModule } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { ReactiveFormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { NgbButtonsModule, NgbTooltipModule, NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap'; +import { NgbButtonsModule, NgbTooltipModule, NgbPaginationModule, NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap'; import { InfiniteScrollModule } from 'ngx-infinite-scroll'; import { AppRoutingModule } from './app-routing.module'; @@ -81,6 +81,7 @@ import { SharedModule } from './shared/shared.module'; NgbButtonsModule, NgbTooltipModule, NgbPaginationModule, + NgbDropdownModule, InfiniteScrollModule, SharedModule, ], diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index 2c08b617a..a80d7782f 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -6,24 +6,21 @@