mirror of https://github.com/apache/cloudstack.git
quota: fix UI's escaping quotes
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
6b11c83fca
commit
6fedff6053
|
|
@ -586,8 +586,8 @@ var g_quotaCurrency = '';
|
|||
return;
|
||||
}
|
||||
var template = json.quotaemailtemplatelistresponse.quotaemailtemplate[0];
|
||||
templateSubjectTextArea.val(template.templatesubject.replace(/\\n/g, '\n'));
|
||||
templateBodyTextArea.val(template.templatebody.replace(/\\n/g, '\n'));
|
||||
templateSubjectTextArea.val(template.templatesubject.replace(/\\n/g, '\n').replace(/\\"/g, '"'));
|
||||
templateBodyTextArea.val(template.templatebody.replace(/\\n/g, '\n').replace(/\\"/g, '"'));
|
||||
},
|
||||
error: function(data) {
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue