Don't try to put labels on nested paths

This commit is contained in:
Piotr Sarnacki 2014-08-06 16:30:44 +02:00
parent 74b3cf765f
commit b4dc5ec547

View File

@ -57,7 +57,7 @@ Ember.Handlebars.registerHelper('input', (options) ->
id = options.hash.id
# generate id only if it's not given
if name && !id
if name && !name.match(/\./) && !id
labels = @get('_labels')
unless labels
labels = Ember.Object.create()