I am facing a small issue related to the Blazor Input File component, which is used for file upload.
Source - https://github.com/SteveSandersonMS/BlazorInputFile
Component Call:
<div class="form-control"><InputFile OnChange="HandleFileSelected" /></div>I am successfully able to upload and delete files with this component. When I am uploading the file, the file name is shown beside component as shown in the screenshot below.
When I am deleting the file, the file gets deleted successfully but the file name is still shown beside component.
I want the file name should be removed once I delete the file. I tried few option but no luck example StateHasChanged();
Is it possible to just refresh the specific component ?? How ?
Could anyone please help to solve this issue. (I don't want to use javascript to achieve the solution)
