]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/booking/no-timezone-set.component.ts
LP1816475: Booking module refresh
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / booking / no-timezone-set.component.ts
1 import {Component} from '@angular/core';
2 import {DialogComponent} from '@eg/share/dialog/dialog.component';
3
4 @Component({
5   selector: 'eg-no-timezone-set-dialog',
6   templateUrl: './no-timezone-set.component.html'
7 })
8
9 /**
10  * Dialog that warns users that there is no valid lib.timezone setting
11  */
12 export class NoTimezoneSetComponent extends DialogComponent {
13     openLSE(): void {
14         window.open('/eg/staff/admin/local/asset/org_unit_settings', '_blank');
15     }
16 }