Compare commits

..

No commits in common. "9c92c7713e5dad0d3b3f53378c9b1c25b84ee1fb" and "3e78921372b540fcce59ea97f767a8c916b61206" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,6 @@ export interface User {
export interface Player {
_id?: string;
num?: string; // ranking number for high score
fraction?: string;
name?: string;
warId?: War;

View File

@ -5,7 +5,6 @@ import {CampaignService} from "../../services/logs/campaign.service";
import {Fraction} from "../../utils/fraction.enum";
import {FormControl} from "@angular/forms";
import {Observable} from "rxjs/Observable";
import {Player} from "../../models/model-interfaces";
@Component({
@ -22,7 +21,7 @@ export class StatisticHighScoreComponent {
searchTerm = new FormControl();
players : Player = {};
players = {};
playersStored = {};
@ -36,6 +35,8 @@ export class StatisticHighScoreComponent {
emptyMessage = {emptyMessage: 'Keine Einträge'};
reorderable = false;
customClasses = {
sortAscending: 'glyphicon glyphicon-triangle-top',
sortDescending: 'glyphicon glyphicon-triangle-bottom',