[pve-devel] applied: [PATCH manager] ui: ceph/Status: fix icon in status grid
Thomas Lamprecht
t.lamprecht at proxmox.com
Fri Jun 18 17:25:25 CEST 2021
On 27.05.21 13:42, Dominik Csapak wrote:
> 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 at proxmox.com>
> ---
> www/manager6/ceph/Status.js | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/www/manager6/ceph/Status.js b/www/manager6/ceph/Status.js
> index cd6d002b..e92c698b 100644
> --- a/www/manager6/ceph/Status.js
> +++ b/www/manager6/ceph/Status.js
> @@ -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) {
>
Seems I already applied this a few weeks ago and forgot to reply:
https://git.proxmox.com/?p=pve-manager.git;a=commit;h=c3b2a34528b40d000564c492cc0fd5ce69432c02
Any how, now I also did the missing cherry-pick to stable-6, thanks!
More information about the pve-devel
mailing list