Skip to content

Commit

Permalink
[Chore] modify gamelog property name #678
Browse files Browse the repository at this point in the history
  • Loading branch information
mike2ox committed Mar 7, 2023
1 parent f1cc188 commit e80e159
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion constants/admin/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ export const tableFormat: TableFormat = {
},
games: {
name: '게임 관리',
columns: ['gameId', 'startAt', 'playTime', 'mode', 'team1', 'team2'],
columns: ['gameId', 'startAt', 'slotTime', 'mode', 'team1', 'team2'],
},
};
2 changes: 1 addition & 1 deletion types/admin/gameLogTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface ITeam {
export interface IGameLog {
gameId: number;
startAt: Date;
playTime: string;
slotTime: string;
mode: string;
team1: ITeam;
team2: ITeam;
Expand Down

0 comments on commit e80e159

Please sign in to comment.