From d257c2ecbd4e6e2120d5e87e9781bf5b7593bba1 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 10 Jul 2020 11:17:20 +0200 Subject: [PATCH] ui: fingerprint: add icon to copy button Signed-off-by: Thomas Lamprecht --- www/Dashboard.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/Dashboard.js b/www/Dashboard.js index 23bdd541..7f699d93 100644 --- a/www/Dashboard.js +++ b/www/Dashboard.js @@ -113,6 +113,7 @@ Ext.define('PBS.Dashboard', { buttons: [ { xtype: 'button', + iconCls: 'fa fa-clipboard', handler: function(b) { var el = document.getElementById('fingerprintField'); el.select(); @@ -121,7 +122,7 @@ Ext.define('PBS.Dashboard', { text: gettext('Copy') }, { - text: gettext("Close"), + text: gettext('Ok'), handler: function() { this.up('window').close(); },