]> git.proxmox.com Git - pve-manager.git/commitdiff
ui: ceph/Status: fix icon in status grid
authorDominik Csapak <d.csapak@proxmox.com>
Thu, 27 May 2021 11:42:48 +0000 (13:42 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 28 May 2021 08:44:15 +0000 (10:44 +0200)
there was a spurious leftover single quote("'"), that prevented
the correct css class to be inserted
(e.g., fa-exclamation' instead of fa-exclamation)

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
www/manager6/ceph/Status.js

index cd6d002b0cad486592c6f8f3b48ad8e63f0b1070..e92c698b7008ebeecbaeaeff18f3b9bd98208e55 100644 (file)
@@ -86,7 +86,7 @@ Ext.define('PVE.node.CephStatus', {
                            renderer: function(value) {
                                let health = PVE.Utils.map_ceph_health[value];
                                let icon = PVE.Utils.get_health_icon(health);
-                               return `<i class="fa fa-fw ${icon}'"></i>`;
+                               return `<i class="fa fa-fw ${icon}"></i>`;
                            },
                            sorter: {
                                sorterFn: function(a, b) {