diff --git a/dashboard-ui/mypreferenceswebclient.html b/dashboard-ui/mypreferenceswebclient.html index a9817a7b1e..60a1b743dd 100644 --- a/dashboard-ui/mypreferenceswebclient.html +++ b/dashboard-ui/mypreferenceswebclient.html @@ -13,7 +13,6 @@ ${TabWebClient} -

diff --git a/dashboard-ui/myprofile.html b/dashboard-ui/myprofile.html index 0a6bebd6cb..0483f52567 100644 --- a/dashboard-ui/myprofile.html +++ b/dashboard-ui/myprofile.html @@ -25,6 +25,11 @@ + +
diff --git a/dashboard-ui/scripts/myprofile.js b/dashboard-ui/scripts/myprofile.js index 2735df4b3b..f72e607524 100644 --- a/dashboard-ui/scripts/myprofile.js +++ b/dashboard-ui/scripts/myprofile.js @@ -30,18 +30,21 @@ $('.newImageForm', page).hide(); $('#btnDeleteImage', page).hide(); + $('.connectMessage', page).show(); } else if (user.PrimaryImageTag) { $('#btnDeleteImage', page).show(); $('#headerUploadNewImage', page).show(); $('.newImageForm', page).show(); + $('.connectMessage', page).hide(); } else { $('.newImageSection', page).show(); $('#fldImage', page).hide().html(''); $('#btnDeleteImage', page).hide(); $('#headerUploadNewImage', page).hide(); + $('.connectMessage', page).hide(); } Dashboard.hideLoadingMsg();