Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(store): remove undefined 'name' variable from name guessing in pr…
Browse files Browse the repository at this point in the history
…operty construction
  • Loading branch information
Lasse Kuechler authored and TheReincarnator committed Apr 18, 2018
1 parent edef4c0 commit 445b4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/styleguide/property/property.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export abstract class Property {
*/
public constructor(id: string) {
this.id = id;
this.name = Store.guessName(id, name);
this.name = Store.guessName(id);
}

/**
Expand Down

0 comments on commit 445b4f4

Please sign in to comment.