Skip to content
This repository was archived by the owner on Jun 9, 2023. It is now read-only.

Initial setup apollo on client #393

Merged
merged 16 commits into from
Aug 2, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into initialSetupApolloOnClient
  • Loading branch information
Zeko369 committed Aug 2, 2020
commit 72f983af307614783c8fca328e30e1d34ec090d2
4 changes: 2 additions & 2 deletions server/models/Chapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class Chapter extends BaseModel {
name: string;
description: string;
category: string;
// details: any;
details?: any;
city: string;
region: string;
country: string;
Expand All @@ -84,7 +84,7 @@ export class Chapter extends BaseModel {
this.name = params.name;
this.description = params.description;
this.category = params.category;
// this.details = details;
this.details = params.details;
this.city = params.city;
this.region = params.region;
this.country = params.country;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.