File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ The `ViewChanged` event fires when the user toggles between the [two FileManager
405405
406406 newFolder.Id = "20";
407407 newFolder.ParentId = parent?.Id;
408- newFolder.Name = "New folder" ;
408+ newFolder.Name = newFolder.Name ;
409409 newFolder.IsDirectory = true;
410410 newFolder.HasDirectories = false;
411411 newFolder.DateCreated = DateTime.Now;
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ The <a href = "https://www.telerik.com/blazor-ui/file-manager" target="_blank">B
5050
5151 newFolder.Id = DirectoryPath + newFolder.Name.ToString();
5252 newFolder.ParentId = parent != null ? parent.Id : null;
53- newFolder.Name = "New folder" ;
53+ newFolder.Name = newFolder.Name ;
5454 newFolder.IsDirectory = true;
5555 newFolder.HasDirectories = false;
5656 newFolder.DateCreated = DateTime.Now;
You can’t perform that action at this time.
0 commit comments