Add null check to VV string parsing

This commit is contained in:
ShadowCommander
2022-04-24 02:16:42 -07:00
parent 37ca9ca19a
commit 102b31f83d
@@ -9,7 +9,7 @@ namespace Robust.Client.ViewVariables.Editors
{
var lineEdit = new LineEdit
{
Text = (string) value!,
Text = (string) (value ?? ""),
Editable = !ReadOnly,
HorizontalExpand = true,
};