@@ -234,13 +251,24 @@ PulseApp.ui.settings = (() => {
-
Additional PBS Servers
+
+
Additional PBS Servers
+
Add more PBS servers beyond the primary one above
+
-
+
+
+ No additional PBS servers configured.
+ Click "Add Another PBS Server" to add more.
+
+
@@ -353,11 +381,17 @@ PulseApp.ui.settings = (() => {
const container = document.getElementById('pve-endpoints-container');
if (!container) return;
- const index = container.children.length + 2; // Start from _2
+ // Hide empty state message when adding first endpoint
+ const emptyState = container.querySelector('.border-dashed');
+ if (emptyState) {
+ emptyState.style.display = 'none';
+ }
+
+ const index = container.children.length + 1; // Start from _2 (but adjust for hidden empty state)
const endpointHtml = `
-