mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
CA-140338: Truncation on New Search Page with long Custom Field Filters name
Accidentally left an extra piece of ellpising in the wrong place, now removed. Signed-off-by: Callum McIntyre <callumiandavid.mcintyre@citrix.com>
This commit is contained in:
parent
3295dc845d
commit
c36f160327
@ -282,7 +282,7 @@ namespace XenAdmin.Controls.XenSearch
|
||||
|
||||
if (CurrentQueryType != null)
|
||||
{
|
||||
queryTypeComboButton.Text = CurrentQueryType.ToString().Ellipsise(20);
|
||||
queryTypeComboButton.Text = CurrentQueryType.ToString();
|
||||
CurrentQueryType.SomeThingChanged += queryType_SomeThingChanged;
|
||||
Setup();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user