Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Wrong PathInfoEntity declaration #139

Closed
DenysVuika opened this issue Jan 3, 2017 · 0 comments
Closed

Wrong PathInfoEntity declaration #139

DenysVuika opened this issue Jan 3, 2017 · 0 comments
Assignees
Labels
Milestone

Comments

@DenysVuika
Copy link
Contributor

PathInfoEntity.elements should be array of PathElementEntity

Current:

export interface PathInfoEntity {
        elements: PathElementEntity;
        isComplete: boolean;
        name: string;
}

export interface PathElementEntity {
     id: string;
     name: string;
}

Expected:

export interface PathInfoEntity {
        elements: PathElementEntity[];
        isComplete: boolean;
        name: string;
}
@DenysVuika DenysVuika added the bug label Jan 3, 2017
@eromano eromano added this to the 1.0.1 milestone Jan 10, 2017
@eromano eromano self-assigned this Jan 10, 2017
eromano added a commit that referenced this issue Jan 10, 2017
magemello added a commit that referenced this issue Jan 10, 2017
#139 Wrong PathInfoEntity declaration
This was referenced Jan 26, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

3 participants