I have a project where we are using an html string in the title of dialogs, but it seems there was an update in release 6.4.0 that now encodes the title. Do you have a workaround for this?
To be clear we are using this method:
public virtual Task<dynamic> OpenAsync<T>(string title, Dictionary<string, object> parameters = null, DialogOptions options = null) where T : ComponentBase
Could we possibly get the following?
public virtual Task<dynamic> OpenAsync<T>(RenderFragment title, Dictionary<string, object> parameters = null, DialogOptions options = null) where T : ComponentBase
Or allow use of a different sanitation method besides htmlencode?