@inherits LayoutComponentBase @inject IOptions GatewayOptions
MXAccess Gateway
@authState.User.Identity?.Name
Sign in
@Body
@code { private string DashboardPath(string relativePath) { string pathBase = GatewayOptions.Value.Dashboard.PathBase.TrimEnd('/'); if (string.IsNullOrWhiteSpace(pathBase)) { pathBase = "/dashboard"; } return $"{pathBase}{relativePath}"; } }