Skip to content

Commit

Permalink
fix attributes test
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorybesson committed Oct 10, 2016
1 parent 58c55fe commit 9ab1227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cms/data/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function getAll(str, json) {
null
) :
null
attrs.editable = (attrs.editable) ? true : false
attrs.editable = (attrs.editable && attrs.editable !== 'false') ? true : false

attrs = Hooks.instance.trigger('afterAbeAttributes', attrs, str, json)

Expand Down

0 comments on commit 9ab1227

Please sign in to comment.