mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 01:36:57 +00:00
Cleaner unpacking of data from scope
This commit is contained in:
parent
bc7d6a64ed
commit
ce147b012f
1 changed files with 2 additions and 4 deletions
|
@ -252,13 +252,11 @@ define [
|
|||
$scope.state.error = isError
|
||||
|
||||
$scope.shouldEnableProjectSelect = () ->
|
||||
state = $scope.state
|
||||
data = $scope.data
|
||||
{ state, data } = $scope
|
||||
return !state.inFlight.projects && data.projects
|
||||
|
||||
$scope.shouldEnableProjectEntitySelect = () ->
|
||||
state = $scope.state
|
||||
data = $scope.data
|
||||
{ state, data } = $scope
|
||||
return !state.inFlight.projects && !state.inFlight.entities && data.projects && data.selectedProjectId
|
||||
|
||||
$scope.shouldEnableCreateButton = () ->
|
||||
|
|
Loading…
Reference in a new issue