@inherits LayoutComponentBase @inject IOptions GatewayOptions
@Body
@code { private string DashboardPath(string relativePath) { string pathBase = GatewayOptions.Value.Dashboard.PathBase.TrimEnd('/'); if (string.IsNullOrWhiteSpace(pathBase)) { pathBase = "/dashboard"; } return $"{pathBase}{relativePath}"; } }