mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
handle null values when saving rootDoc_id
This commit is contained in:
parent
05ee2a5244
commit
bf4404b60a
1 changed files with 5 additions and 1 deletions
|
@ -55,7 +55,11 @@ define [
|
|||
|
||||
$scope.$watch "project.rootDoc_id", (rootDoc_id, oldRootDoc_id) =>
|
||||
return if @ignoreUpdates
|
||||
if oldRootDoc_id? and rootDoc_id != oldRootDoc_id
|
||||
# don't save on initialisation, Angular passes oldRootDoc_id as
|
||||
# undefined in this case.
|
||||
return if typeof oldRootDoc_id is "undefined"
|
||||
# otherwise only save changes, null values are allowed
|
||||
if (rootDoc_id != oldRootDoc_id)
|
||||
settings.saveProjectSettings({rootDocId: rootDoc_id})
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue