Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 08f1cab

Browse files
cppwfsghillert
authored andcommitted
Adds refresh buttons to task executions and runtime apps pages.
resolves #214
1 parent 0603c3f commit 08f1cab

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

ui/src/app/runtime/runtime-apps.component.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<h1 class="no-user-selection">Runtime applications</h1>
2-
<p> This section shows the list of all running apps.</p>
2+
<table>
3+
<tr>
4+
<th style="font-weight: normal; width: 950px">
5+
This section shows the list of all running apps.
6+
</th>
7+
<th>
8+
<button id="refreshTaskExecutionsButton" type="button" (click)="getPage($event)"
9+
class="btn btn-default"><span class="glyphicon glyphicon-refresh"></span></button>
10+
</th>
11+
</tr>
12+
</table>
313
<div *ngIf="runtimeApps?.items.length == 0">No applications are running.</div>
414
<table *ngIf="runtimeApps?.items.length > 0" class="table table-hover">
515
<thead>

ui/src/app/tasks/task-executions/task-executions.component.html

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
<h1 [ngBusy]="busy">Task Executions</h1>
2-
<p>
3-
This section lists all the available task executions.
4-
</p>
5-
2+
<table>
3+
<tr>
4+
<th style="font-weight: normal; width: 765px">
5+
This section lists all the available task executions.
6+
</th>
7+
<th>
8+
<button id="refreshTaskExecutionsButton" type="button" (click)="loadTaskExecutions()"
9+
class="btn btn-default"><span class="glyphicon glyphicon-refresh"></span></button>
10+
</th>
11+
</tr>
12+
</table>
613
<div *ngIf="!taskExecutions">No task executions available.</div>
714
<table *ngIf="taskExecutions?.items" class="table table-hover">
815
<thead>

0 commit comments

Comments
 (0)