mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
CA-147943: Scrollbar for list of hotfixes installed in a pool doesn't have scrollbar the first time it is expanded
General tab (Pool): In the list of updates, added a space after each comma to let the control wrap the text into multiple lines. This way the text is no longer cut, therefore no additional scrollbar is needed. Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
This commit is contained in:
parent
bb5235ca40
commit
6185b24b37
@ -1733,7 +1733,7 @@ namespace XenAdmin.TabPages
|
||||
|
||||
output.Sort(StringUtility.NaturalCompare);
|
||||
|
||||
return String.Join(",", output.ToArray());
|
||||
return String.Join(", ", output.ToArray());
|
||||
}
|
||||
|
||||
private string poolUpdateString(Predicate<Pool_update> predicate)
|
||||
@ -1748,7 +1748,7 @@ namespace XenAdmin.TabPages
|
||||
|
||||
output.Sort(StringUtility.NaturalCompare);
|
||||
|
||||
return String.Join(",", output.ToArray());
|
||||
return String.Join(", ", output.ToArray());
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
Loading…
Reference in New Issue
Block a user