Skip to content

Commit

Permalink
bug fix: file editor issue ref: https://community.cyberpanel.net/t/er…
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Feb 2, 2024
1 parent f854aaf commit ce4b06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filemanager/static/filemanager/js/fileManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ fileManager.controller('fileManagerCtrl', function ($scope, $http, FileUploader,
completePathForFile = $scope.currentRPath + "/" + allFilesAndFolders[0];
$scope.errorMessageFile = true;
} else {
completePathForFile = $scope.currentPath + "/" + $scope.newFileName;
completePathForFile = $scope.currentPath + "/" + allFilesAndFolders[0];
$scope.errorMessageFile = true;
}

Expand Down

0 comments on commit ce4b06f

Please sign in to comment.