diff --git a/main/webapp/modules/core/scripts/preferences.js b/main/webapp/modules/core/scripts/preferences.js index 81cf9c5b4..2aede929d 100644 --- a/main/webapp/modules/core/scripts/preferences.js +++ b/main/webapp/modules/core/scripts/preferences.js @@ -103,19 +103,19 @@ function deDupUserMetaData(arrObj) { return JSON.stringify(result).replace(/"/g, '\"'); } -function PreferenceUI(tr, key, value) { +function PreferenceUI(tr, key, initialValue) { var self = this; var td0 = tr.insertCell(0); $(td0).text(key); var td1 = tr.insertCell(1); - $(td1).text((value !== null) ? value : ""); + $(td1).text((initialValue !== null) ? initialValue : ""); var td2 = tr.insertCell(2); $('