aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/confirm/confirm.service.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-02-10 11:51:51 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-02-10 11:52:45 +0100
commit7af75da41ba32451c3e9564714b05b506bdd881d (patch)
tree9f308d082acb8cbd045c3e378751a52d69f37c8c /client/src/app/core/confirm/confirm.service.ts
parentf6f7dfee01e8b7ddf62d2549b8f381d0b12b590e (diff)
downloadPeerTube-7af75da41ba32451c3e9564714b05b506bdd881d.tar.gz
PeerTube-7af75da41ba32451c3e9564714b05b506bdd881d.tar.zst
PeerTube-7af75da41ba32451c3e9564714b05b506bdd881d.zip
Client: fix lint
Diffstat (limited to 'client/src/app/core/confirm/confirm.service.ts')
-rw-r--r--client/src/app/core/confirm/confirm.service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/core/confirm/confirm.service.ts b/client/src/app/core/confirm/confirm.service.ts
index b97969795..08127a66f 100644
--- a/client/src/app/core/confirm/confirm.service.ts
+++ b/client/src/app/core/confirm/confirm.service.ts
@@ -7,7 +7,7 @@ export class ConfirmService {
7 showConfirm = new Subject<{ title, message }>(); 7 showConfirm = new Subject<{ title, message }>();
8 confirmResponse = new Subject<boolean>(); 8 confirmResponse = new Subject<boolean>();
9 9
10 confirm(message: string = '', title: string = '') { 10 confirm(message = '', title = '') {
11 this.showConfirm.next({ title, message }); 11 this.showConfirm.next({ title, message });
12 12
13 return this.confirmResponse.asObservable().first(); 13 return this.confirmResponse.asObservable().first();