Fix for Empty input field when editing aspect name Fix #6548

This commit is contained in:
Saritha 2015-11-25 12:30:55 +05:30 committed by Dennis Schubert
parent 9eb0dddb1a
commit 7fe7287928

View file

@ -63,6 +63,8 @@ app.pages.Contacts = Backbone.View.extend({
showAspectNameForm: function() {
$(".header > h3").hide();
var aspectName = $.trim($(".header h3 #aspect_name").text());
$("#aspect_name_form #aspect_name").val(aspectName);
$(".header > #aspect_name_form").show();
},