You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/03/29 18:23:31 UTC

[incubator-ponymail-foal] 01/03: reword what this button is for

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 3ad6932737cc69435c5b3aa1d9d5d13972afda3d
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Mar 29 20:19:51 2021 +0200

    reword what this button is for
---
 webui/js/source/render-email.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/js/source/render-email.js b/webui/js/source/render-email.js
index bfb1d90..c34291c 100644
--- a/webui/js/source/render-email.js
+++ b/webui/js/source/render-email.js
@@ -173,7 +173,7 @@ async function render_email_chatty(state, json) {
 
     // Admin button?
     if (ponymail_preferences.login && ponymail_preferences.login.credentials && ponymail_preferences.login.credentials.admin) {
-        let adminbutton = new HTML('a', { href: 'admin/%s'.format(json.mid), target: '_self', title: "Administrative control", class: 'btn toolbar_btn toolbar_button_admin'}, new HTML('span', { class: 'glyphicon glyphicon-cog'}, ' '));
+        let adminbutton = new HTML('a', { href: 'admin/%s'.format(json.mid), target: '_self', title: "Modify email", class: 'btn toolbar_btn toolbar_button_admin'}, new HTML('span', { class: 'glyphicon glyphicon-cog'}, ' '));
         toolbar.inject(adminbutton);
     }