feat(ui): Display placeholder in PBS tab when not configured

This commit is contained in:
courtmanr@gmail.com
2025-04-24 18:26:09 +01:00
parent 307dc8fb35
commit 6fad18709a
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -294,6 +294,7 @@ Once installed, the Pulse application runs as a `systemd` service. You can manag
- Efficient polling: Stops polling the Proxmox API when no clients (browsers) are connected, reducing load.
- Docker support for easy deployment.
- Support for monitoring multiple distinct Proxmox environments.
- Monitoring support for Proxmox Backup Server (PBS) instances (configured as additional endpoints).
- LXC installation script for easy setup.
## 💻 System Requirements
+1 -1
View File
@@ -1672,7 +1672,7 @@ document.addEventListener('DOMContentLoaded', function() {
</svg>
<div>
<p class="font-semibold mb-1">Proxmox Backup Server Not Configured</p>
<p class="text-xs opacity-90">PBS connection details (e.g., <code>PROXMOX_HOST_2</code>, <code>PROXMOX_TOKEN_ID_2</code>) need to be set in your <code>.env</code> file to enable PBS monitoring.</p>
<p class="text-xs opacity-90">Please ensure Proxmox Backup Server is configured in your environment (<code>.env</code> file) to enable monitoring.</p>
</div>
`;
container.appendChild(placeholder);