diff --git a/Common/Ui/GenesisToolBox/Infrastructure/Software.cs b/Common/Ui/GenesisToolBox/Infrastructure/Software.cs index 672eb953..0d00e312 100644 --- a/Common/Ui/GenesisToolBox/Infrastructure/Software.cs +++ b/Common/Ui/GenesisToolBox/Infrastructure/Software.cs @@ -59,6 +59,11 @@ { UserName = $"{model.FirstName} {model.LastName}"; } + + if (string.IsNullOrWhiteSpace(UserName)) + { + UserName = "Options"; + } } /// @@ -99,6 +104,11 @@ } } + if (string.IsNullOrWhiteSpace(UserName)) + { + UserName = "Options"; + } + return HasUser; }