Skip to content

Commit

Permalink
Include missed files from previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronaldo Macapobre committed Feb 25, 2025
1 parent 189dc78 commit e80282e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/src/components/courtlist/CourtList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
const getListOfAvailableCourts = () => {
errorCode.value = 0;
httpService
.get<CourtRoomsJsonInfoType[]>('api/location/court-rooms')
.get<CourtRoomsJsonInfoType[]>('api/location?includeChildRecords=true')
.then(
(Response) => Response,
(err) => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/services/LocationService.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { LocationInfo } from '../types/courtlist';
import { LocationInfo } from '@/types/courtlist';
import { HttpService } from './HttpService';

export class LocationService {
Expand Down
2 changes: 0 additions & 2 deletions web/src/types/courtlist/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export interface LocationInfo {
name: string;
code: string;
locationId: string;
justinLocationName: string;
justinLocationId: string;
active?: boolean;
courtRooms: CourtRoomsInfo[];
}
Expand Down

0 comments on commit e80282e

Please sign in to comment.