From f875db9b043bae59d91388360d50ffbd07523fc9 Mon Sep 17 00:00:00 2001 From: Morgan Touverey Quilling Date: Fri, 2 Feb 2018 17:38:38 +0100 Subject: [PATCH] fix(SwalComponent): add missing @Input for "footer" option --- src/swal.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/swal.component.ts b/src/swal.component.ts index 24333a7..2ed40aa 100644 --- a/src/swal.component.ts +++ b/src/swal.component.ts @@ -32,6 +32,7 @@ export class SwalComponent implements OnChanges { @Input() public titleText: SweetAlertOptions['titleText']; @Input() public text: SweetAlertOptions['text']; @Input() public html: SweetAlertOptions['html']; + @Input() public footer: SweetAlertOptions['footer']; @Input() public type: SweetAlertOptions['type']; @Input() public backdrop: SweetAlertOptions['backdrop']; @Input() public toast: SweetAlertOptions['toast'];