(fix) Assign to task - 'Type & Search' option not available [SCI-10382] (#7279)

This commit is contained in:
Gregor Lasnibat 2024-03-14 13:07:11 +01:00 committed by GitHub
parent 0632d90b3f
commit f400e2f6d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,6 +41,7 @@
<SelectDropdown
:value="selectedProject"
ref="projectsSelector"
:searchable="true"
@change="changeProject"
:options="projects"
:isLoading="projectsLoading"
@ -69,6 +70,7 @@
<SelectDropdown
:value="selectedExperiment"
:disabled="!selectedProject"
:searchable="true"
ref="experimentsSelector"
@change="changeExperiment"
:options="experiments"
@ -94,6 +96,7 @@
<SelectDropdown
:value="selectedTask"
:disabled="!selectedExperiment"
:searchable="true"
ref="tasksSelector"
@change="changeTask"
:options="tasks"