]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/core/confirm/confirm.service.ts
Client: update to angular 4
[github/Chocobozzz/PeerTube.git] / client / src / app / core / confirm / confirm.service.ts
index b9796979591754d23999796d76748ed7084f7fc8..08127a66ff223f146f6530be2a9eab34b71c25a0 100644 (file)
@@ -7,7 +7,7 @@ export class ConfirmService {
   showConfirm = new Subject<{ title, message }>();
   confirmResponse = new Subject<boolean>();
 
-  confirm(message: string = '', title: string = '') {
+  confirm(message = '', title = '') {
     this.showConfirm.next({ title, message });
 
     return this.confirmResponse.asObservable().first();