René Spišák
Results
2
issues of
René Spišák
I'm using SVG icons in application, but sanitizer removes it. Tried to allow `svg` tag, but it is not working. All svg nested tags are removed. ```c# sanitizer.AllowedTags.Add("svg") ``` How...
I need to use ClientId provided as parametr in controller's method as POST data. Is there any way? ```c# public async Task GetData([FromBody] SearchModel model) { var clientId = model.ClientId;...