* default routes and redirects added
* timers refactored into a timer service from the app.component * settings service now provides observable setting changes * slideshow is now working * commit-tracker style changed to dark look, colored lines were removed * dashboard menu order changed * slide/committracker is now animated
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div class="ui main wide-container">
|
||||
<table *ngIf="commits?.length" class="ui large padded celled table">
|
||||
<div class="ui main wide-container dark">
|
||||
<table *ngIf="commits?.length" class="ui large padded inverted celled2 table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="collapsing"><i class="user icon"></i>Owner</th>
|
||||
@@ -12,7 +12,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let commit of commits" [ngClass]="rowClasses(commit)">
|
||||
<tr *ngFor="let commit of commits">
|
||||
<td class="collapsing">{{commit.owner}}</td>
|
||||
<td class="collapsing">{{commit.gerrit_time}}</td>
|
||||
<td>{{commit.gerrit_change_subject}}</td>
|
||||
|
||||
Reference in New Issue
Block a user