diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs index a9ac604e6..fdd389ad3 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs @@ -102,7 +102,7 @@ namespace Tango.PPC.Jobs.ViewModels CustomersAutoCompleteProvider = new AutoCompleteProvider<Customer>((customer, filter) => { - return customer.Name.ToLower().StartsWith(filter.ToLower()); + return customer.Name.ToLower().StartsWith(filter != null ? filter.ToLower() : String.Empty); }); } |
