Fix exception in transfer input if no values are supplied
This commit is contained in:
parent
5c4f81cf80
commit
c4793daf07
1 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,8 @@
|
||||||
Title = TitleSelector.Invoke(i)
|
Title = TitleSelector.Invoke(i)
|
||||||
});
|
});
|
||||||
|
|
||||||
TargetKeys = Values.Select(i => i.Id.ToString()).ToList();
|
if (Values != null)
|
||||||
|
TargetKeys = Values.Select(i => i.Id.ToString()).ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue