mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 06:42:25 +02:00
Add null check to VV string parsing
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Robust.Client.ViewVariables.Editors
|
||||
{
|
||||
var lineEdit = new LineEdit
|
||||
{
|
||||
Text = (string) value!,
|
||||
Text = (string) (value ?? ""),
|
||||
Editable = !ReadOnly,
|
||||
HorizontalExpand = true,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user