From 2c0f5fc5d0b5ffedf9f88436a6c5c49f13b9f017 Mon Sep 17 00:00:00 2001 From: deilann Date: Sat, 25 Jan 2014 13:17:01 -0800 Subject: [PATCH] removed stray paren Stray parentheses was cutting off destination for the string submitted upon changing names in profiles. --- views/options/profile.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/options/profile.jade b/views/options/profile.jade index c2fe8f8bce..5c3d80ee3b 100644 --- a/views/options/profile.jade +++ b/views/options/profile.jade @@ -195,7 +195,7 @@ script(id='partials/options.profile.profile.html', type='text/ng-template') // TODO use photo-upload instead: https://groups.google.com/forum/?fromgroups=#!topic/derbyjs/xMmADvxBOak .control-group.option-large label.control-label=env.t('displayname') - input.option-content(type='text', placeholder=env.t('fullName')), ng-model='editingProfile.name') + input.option-content(type='text', placeholder=env.t('fullName'), ng-model='editingProfile.name') .control-group.option-large label.control-label=env.t('photourl') input.option-content(type='url', ng-model='editingProfile.imageUrl', placeholder=env.t('imageurl'))