Skip to content

Commit

Permalink
Fix store objects not having a config
Browse files Browse the repository at this point in the history
  • Loading branch information
goatslacker committed Oct 31, 2015
1 parent ec3ccd8 commit d72eb9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/alt/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ export function createStoreFromObject(alt, StoreModel, key) {
StoreModel
),
StoreProto.publicMethods,
{ displayName: key }
{
displayName: key,
config: StoreModel.config,
}
)

return storeInstance
Expand Down

0 comments on commit d72eb9d

Please sign in to comment.