mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
18 lines
945 B
HTML
18 lines
945 B
HTML
<!--
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
-->
|
|
<div class="job-heading-container">
|
|
<h1 class="job-heading" *ngIf="_isCloud === false">Alerts</h1>
|
|
<h1 class="job-heading" *ngIf="_isCloud === true">No Alerts Available</h1>
|
|
<div class="icon in-progress" *ngIf="_showProgressWheel === true"></div>
|
|
</div>
|
|
<div class="jobs-view-toolbar">
|
|
<div (click)="refreshJobs()" tabindex="0"><div class="small icon refresh"></div><span>{{RefreshText}}</span></div>
|
|
<div (click)="openCreateAlertDialog()" tabindex="0"><div class="small icon new"></div><span>{{NewAlertText}}</span></div>
|
|
</div>
|
|
|
|
<div #jobalertsgrid class="jobview-grid"></div>
|