summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-31 23:05:32 -0500
committerDessalines <tyhou13@gmx.com>2020-01-31 23:05:32 -0500
commitb08f27bb60ae8805ab42c319a893fa0196ca139a (patch)
tree89485e95e728a415aa9f6c199f0ce3fb9dc55e40 /ui
parent6307a02f92d80c4285bb98830b50ddb3f39e9327 (diff)
parentecbf7e8f8506e558e7ff25ba086096282757a716 (diff)
Merge branch 'dev' into richardj-language/dutch-language-update-2
Diffstat (limited to 'ui')
-rw-r--r--ui/src/services/WebSocketService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/services/WebSocketService.ts b/ui/src/services/WebSocketService.ts
index 83e9ef1e..a7e9b7e0 100644
--- a/ui/src/services/WebSocketService.ts
+++ b/ui/src/services/WebSocketService.ts
@@ -120,7 +120,7 @@ export class WebSocketService {
public listCategories() {
this.subject.next(
- this.wsSendWrapper(UserOperation.ListCategories, undefined)
+ this.wsSendWrapper(UserOperation.ListCategories, {})
);
}
@@ -254,7 +254,7 @@ export class WebSocketService {
}
public getSite() {
- this.subject.next(this.wsSendWrapper(UserOperation.GetSite, undefined));
+ this.subject.next(this.wsSendWrapper(UserOperation.GetSite, {}));
}
public search(form: SearchForm) {