mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-03 20:43:34 +00:00
Disable the 'select a project/file' options in project-linked-file modal
This commit is contained in:
parent
8766b5d487
commit
578d667efa
1 changed files with 2 additions and 2 deletions
|
@ -362,7 +362,7 @@ script(type='text/ng-template', id='projectLinkedFileModalTemplate')
|
|||
ng-model="data.selectedProjectId"
|
||||
ng-disabled="!shouldEnableProjectSelect()"
|
||||
)
|
||||
option(value="") - No Project Selected
|
||||
option(value="" disabled selected) - Please Select a Project
|
||||
option(
|
||||
ng-repeat="project in data.projects"
|
||||
value="{{ project._id }}"
|
||||
|
@ -379,7 +379,7 @@ script(type='text/ng-template', id='projectLinkedFileModalTemplate')
|
|||
ng-model="data.selectedProjectEntity"
|
||||
ng-disabled="!shouldEnableProjectEntitySelect()"
|
||||
)
|
||||
option(value="") - No File Selected
|
||||
option(value="" disabled selected) - Please Select a File
|
||||
option(
|
||||
ng-repeat="projectEntity in data.projectEntities"
|
||||
value="{{ projectEntity.path }}"
|
||||
|
|
Loading…
Reference in a new issue