mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
don't do a project rename if the name is the same
this prevents double renaming which happens when you press enter as well as no name change
This commit is contained in:
@@ -17,6 +17,8 @@ define [
|
||||
newName = $scope.inputs.name
|
||||
if !newName? or newName.length == 0 or newName.length > MAX_PROJECT_NAME_LENGTH
|
||||
return
|
||||
if $scope.project.name == newName
|
||||
return
|
||||
$scope.project.name = newName
|
||||
settings.saveProjectSettings({name: $scope.project.name})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user