Project

General

Profile

« Previous | Next » 

Revision 57734

New color palettes, logo and icons

View differences:

countries-table.component.html
46 46
  <tbody>
47 47
    <ng-container *ngIf="isPercentage">
48 48
      <tr *ngFor="let countryOverview of countries">
49
        <td class=""><a>{{countryOverview.country}}</a></td>
49
        <td class=""><a [routerLink]="['/countryDashboard/' + countryOverview.country]">{{countryOverview.country}}</a></td>
50 50
        <td *ngIf="type=='overview'" class="uk-text-center">
51 51
          <ng-container *ngIf="countryOverview.repositories?.percentage !=null">{{countryOverview.repositories.percentage | number}}%</ng-container>
52 52
          <ng-container *ngIf="countryOverview.repositories===null || countryOverview.repositories.percentage===null">--</ng-container>
......
79 79
    </ng-container>
80 80
    <ng-container *ngIf="!isPercentage">
81 81
      <tr *ngFor="let countryOverview of countries">
82
        <td class=""><a>{{countryOverview.country}}</a></td>
82
        <td class=""><a [routerLink]="['/countryDashboard/' + countryOverview.country]">{{countryOverview.country}}</a></td>
83 83
        <td *ngIf="type=='overview'" class="uk-text-center">
84 84
          <ng-container *ngIf="countryOverview.repositories?.oa !=null">{{countryOverview.repositories.oa | number}}</ng-container>
85 85
          <ng-container *ngIf="countryOverview.repositories===null || countryOverview.repositories.oa===null">--</ng-container>

Also available in: Unified diff