mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-11 16:55:37 +00:00
Use ide.validFileRegex, not hard coded regex
This commit is contained in:
parent
4386ab1225
commit
21f88bb20e
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ define [
|
|||
$scope.finishRenaming = () ->
|
||||
name = $scope.inputs.name
|
||||
|
||||
if !name.match(/^[^\*\/]*$/)
|
||||
if !name.match(new RegExp(ide.validFileRegex))
|
||||
# Showing the modal blurs the rename box which calls us again
|
||||
# so track this with the invalidModalShowing flag
|
||||
return if invalidModalShowing
|
||||
|
|
Loading…
Add table
Reference in a new issue