Remove No Subscription message in Proxmox VE 8.4

sed -i "/\.data\.status\.toLowerCase() !== 'active') {/c\.data.status.toLowerCase() == 'active') {" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service

This has been tested in Proxmox VE 8.4.1 and must be run after each update of the Proxmox User Interface.

In the file :

/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js

search for the line :

.data.status.toLowerCase() !== 'active') {

(as of 2025-04-20, this is line 565) and replace with :

.data.status.toLowerCase() == 'active') {