Skip to content

Commit

Permalink
Display volumes each per line instead all in one
Browse files Browse the repository at this point in the history
  • Loading branch information
Commifreak committed Mar 28, 2023
1 parent c7622a3 commit 8f169b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/content/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class="fa fa-clock-o title"></i>Notifications, scheduling and retention</span>
foreach ($container['Volumes'] ?? [] as $volume) {
$volumes[] = explode(":", $volume)[0];
}
$volumes = implode("; ", $volumes);
$volumes = implode("<br />", $volumes);

if (empty($volumes)) {
$volumes = "<b>No volumes - container will NOT being backed up!</b>";
Expand All @@ -321,7 +321,7 @@ class="fa fa-clock-o title"></i>Notifications, scheduling and retention</span>
<blockquote class='inline_help'>
<dl>
<dt>Configured volumes</dt>
<dd>$volumes</dd>
<dd><div style="display: table">$volumes</div></dd>
<dt>Verify Backup?</dt>
<dd><select id='{$container['Name']}_verifyBackup' name="containerSettings[{$container['Name']}][verifyBackup]" data-setting="{$containerSetting['verifyBackup']}" >
Expand Down

0 comments on commit 8f169b2

Please sign in to comment.