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:
Henry Oswald 2016-03-09 14:47:49 +00:00
parent 940586f654
commit f108c01ea5

View file

@ -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})