Remove team's initial_name, replaced by their ID
This commit is contained in:
parent
ed89252a72
commit
842a769385
9 changed files with 26 additions and 65 deletions
|
@ -1041,7 +1041,7 @@ angular.module("FICApp")
|
|||
|
||||
.controller("TeamsListController", function($scope, Team, $location) {
|
||||
$scope.teams = Team.query();
|
||||
$scope.fields = ["id", "name", "initialName"];
|
||||
$scope.fields = ["id", "name"];
|
||||
|
||||
$scope.show = function(id) {
|
||||
$location.url("/teams/" + id);
|
||||
|
|
Reference in a new issue