Skip to content

Commit

Permalink
fix(docz-core): remove order from Entry class
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Feb 27, 2019
1 parent 18ac37b commit e12c37d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/docz-core/src/lib/Entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export interface EntryObj {
slug: string
name: string
route: string
order: number
menu: string | null
headings: Heading[]
[key: string]: any
Expand All @@ -40,7 +39,6 @@ export class Entry {
public slug: string
public route: string
public name: string
public order: number
public menu: string | null
public headings: Heading[]
public settings: {
Expand All @@ -58,7 +56,6 @@ export class Entry {
this.slug = this.slugify(filepath, config.separator)
this.route = this.getRoute(parsed)
this.name = name
this.order = parsed.order || 0
this.menu = parsed.menu || null
this.headings = headingsFromAst(ast)
this.settings = parsed
Expand Down

0 comments on commit e12c37d

Please sign in to comment.