prune sim: avoid colon to separate keep desc from count

hack for space issues for monthly keeps and >9 counts

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-11-11 08:20:09 +01:00
parent 6ed79592f2
commit 0a0ba0785b
2 changed files with 4 additions and 1 deletions

View File

@ -76,6 +76,9 @@ edit the interval at which pruning takes place.
:align: right
:alt: Prune and garbage collection options
Prune Keep Example
^^^^^^^^^^^^^^^^^^
.. _maintenance_gc:

View File

@ -219,7 +219,7 @@ Ext.onReady(function() {
html += `<span class="strikethrough">${text}</span>`;
} else {
if (backup.data.keepCount) {
text += ` (${backup.data.keepName}: ${backup.data.keepCount})`;
text += ` (${backup.data.keepName} ${backup.data.keepCount})`;
} else {
text += ` (${backup.data.keepName})`;
}