fix: specify PVE backup files in permission descriptions

This commit is contained in:
Pulse Monitor
2025-08-08 21:53:46 +00:00
parent 8dd13186ae
commit be973764fa
@@ -425,7 +425,7 @@ export const NodeModal: Component<NodeModalProps> = (props) => {
</label>
<p class="text-xs text-gray-500 dark:text-gray-400 ml-6 mt-1">
{formData().enableBackupManagement
? 'Required to read backup files and display them in the Backups tab (Proxmox API limitation)'
? 'Required to read PVE backup files and display them in the Backups tab (Proxmox API limitation)'
: 'Backups tab will not show PVE backups without these permissions'}
</p>
</div>
@@ -488,7 +488,7 @@ export const NodeModal: Component<NodeModalProps> = (props) => {
</p>
<p class="text-gray-600 dark:text-gray-400 text-xs mt-1">
<strong>Permissions granted:</strong> PVEAuditor (read-only) on root
{formData().enableBackupManagement && ' + PVEDatastoreAdmin on /storage (needed to read backup files)'}
{formData().enableBackupManagement && ' + PVEDatastoreAdmin on /storage (needed to read PVE backup files)'}
</p>
</div>
</Show>