Compare commits
No commits in common. "9c92c7713e5dad0d3b3f53378c9b1c25b84ee1fb" and "3e78921372b540fcce59ea97f767a8c916b61206" have entirely different histories.
9c92c7713e
...
3e78921372
|
@ -19,7 +19,6 @@ export interface User {
|
||||||
|
|
||||||
export interface Player {
|
export interface Player {
|
||||||
_id?: string;
|
_id?: string;
|
||||||
num?: string; // ranking number for high score
|
|
||||||
fraction?: string;
|
fraction?: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
warId?: War;
|
warId?: War;
|
||||||
|
|
|
@ -5,7 +5,6 @@ import {CampaignService} from "../../services/logs/campaign.service";
|
||||||
import {Fraction} from "../../utils/fraction.enum";
|
import {Fraction} from "../../utils/fraction.enum";
|
||||||
import {FormControl} from "@angular/forms";
|
import {FormControl} from "@angular/forms";
|
||||||
import {Observable} from "rxjs/Observable";
|
import {Observable} from "rxjs/Observable";
|
||||||
import {Player} from "../../models/model-interfaces";
|
|
||||||
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -22,7 +21,7 @@ export class StatisticHighScoreComponent {
|
||||||
|
|
||||||
searchTerm = new FormControl();
|
searchTerm = new FormControl();
|
||||||
|
|
||||||
players : Player = {};
|
players = {};
|
||||||
|
|
||||||
playersStored = {};
|
playersStored = {};
|
||||||
|
|
||||||
|
@ -36,6 +35,8 @@ export class StatisticHighScoreComponent {
|
||||||
|
|
||||||
emptyMessage = {emptyMessage: 'Keine Einträge'};
|
emptyMessage = {emptyMessage: 'Keine Einträge'};
|
||||||
|
|
||||||
|
reorderable = false;
|
||||||
|
|
||||||
customClasses = {
|
customClasses = {
|
||||||
sortAscending: 'glyphicon glyphicon-triangle-top',
|
sortAscending: 'glyphicon glyphicon-triangle-top',
|
||||||
sortDescending: 'glyphicon glyphicon-triangle-bottom',
|
sortDescending: 'glyphicon glyphicon-triangle-bottom',
|
||||||
|
|
Loading…
Reference in New Issue