]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/dialog/alert.component.ts
LP1615805 No inputs after submit in patron search (AngularJS)
[Evergreen.git] / Open-ILS / src / eg2 / src / app / share / dialog / alert.component.ts
1 import {Component, Input, ViewChild, TemplateRef} from '@angular/core';
2 import {DialogComponent} from '@eg/share/dialog/dialog.component';
3
4 @Component({
5     selector: 'eg-alert-dialog',
6     templateUrl: './alert.component.html'
7 })
8
9 /**
10  * Alertation dialog that requests user input.
11  */
12 export class AlertDialogComponent extends DialogComponent {
13
14     // What are we warning the user with?
15     @Input() public dialogBody: string;
16 }
17
18