Skip to content

Commit

Permalink
Merge pull request #124 from ezraroi/122-in-detailed-table-there-is-f…
Browse files Browse the repository at this point in the history
…lag-and-not-icon

fix table
  • Loading branch information
ezraroi authored Sep 18, 2024
2 parents a62ade5 + 3321b38 commit 4079dcd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Mundialito/Client/src/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ angular.module('mundialitoApp').constant('Constants',
{ field: 'Place', displayName: '', resizable: false, maxWidth: 30 },
{ field: 'Name', displayName: 'Name', resizable: true, minWidth: 115 },
{ field: 'Points', displayName: 'Points', resizable: true, minWidth: 45, maxWidth: 75},
{ field: 'GeneralBet.WinningTeam', displayName: 'Team', resizable: false, maxWidth: 45, cellTemplate: '<div class="ui-grid-cell-contents text-center" title="TOOLTIP"><i ng-class="[\'flag\',\'flag-fifa-{{row.entity.GeneralBet.WinningTeam.ShortName | lowercase}}\']" tooltip="{{row.entity.GeneralBet.WinningTeam.Name}}"></i></div>' },
{ field: 'GeneralBet.WinningTeam', displayName: 'Team', resizable: false, maxWidth: 45, cellTemplate: '<div class="ui-grid-cell-contents text-center" title="TOOLTIP"><team-flag team="row.entity.GeneralBet.WinningTeam"></team-flag></div>' },
{ field: 'GeneralBet.GoldenBootPlayer.Name', displayName: 'Player', resizable: false, minWidth: 50, maxWidth: 50, cellTemplate: '<div class="ui-grid-cell-contents text-center">{{COL_FIELD.split(\' \')[0].charAt(0)}}.{{COL_FIELD.split(\' \')[1].charAt(0)}}</div>' },
{ field: 'Marks', displayName: 'Marks', resizable: true },
{ field: 'Results', displayName: 'Results', resizable: true },
Expand Down
4 changes: 2 additions & 2 deletions Mundialito/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@
@if (env.IsProduction())
{
<script src="lib/lib-min-2d5e40df8764ea1d842fca768d139b58.js"></script>
<script src="js/app-min-6c10cabb3a2ab76eb865c995f6947679.js"></script>
<script src="js/app-min-ba6257de0a6b1191450457166bb9f1de.js"></script>
}
else {
<script src="lib/lib-77990d6df268e8d3d432fb52597000f9.js"></script>
<script src="js/app-5e44a1b15c1cfae702ee2652dd5f5edc.js"></script>
<script src="js/app-0e225f795ac563e8bed1c5a039aff720.js"></script>
}
</div>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ angular.module('mundialitoApp').constant('Constants',
{ field: 'Place', displayName: '', resizable: false, maxWidth: 30 },
{ field: 'Name', displayName: 'Name', resizable: true, minWidth: 115 },
{ field: 'Points', displayName: 'Points', resizable: true, minWidth: 45, maxWidth: 75},
{ field: 'GeneralBet.WinningTeam', displayName: 'Team', resizable: false, maxWidth: 45, cellTemplate: '<div class="ui-grid-cell-contents text-center" title="TOOLTIP"><i ng-class="[\'flag\',\'flag-fifa-{{row.entity.GeneralBet.WinningTeam.ShortName | lowercase}}\']" tooltip="{{row.entity.GeneralBet.WinningTeam.Name}}"></i></div>' },
{ field: 'GeneralBet.WinningTeam', displayName: 'Team', resizable: false, maxWidth: 45, cellTemplate: '<div class="ui-grid-cell-contents text-center" title="TOOLTIP"><team-flag team="row.entity.GeneralBet.WinningTeam"></team-flag></div>' },
{ field: 'GeneralBet.GoldenBootPlayer.Name', displayName: 'Player', resizable: false, minWidth: 50, maxWidth: 50, cellTemplate: '<div class="ui-grid-cell-contents text-center">{{COL_FIELD.split(\' \')[0].charAt(0)}}.{{COL_FIELD.split(\' \')[1].charAt(0)}}</div>' },
{ field: 'Marks', displayName: 'Marks', resizable: true },
{ field: 'Results', displayName: 'Results', resizable: true },
Expand Down

This file was deleted.

Large diffs are not rendered by default.

0 comments on commit 4079dcd

Please sign in to comment.